개발자 MS-SQL 에서 쿼리로 컬럼 조회방법 Swamp of hope 2014. 8. 7. 11:13 select o.name TableName, c.name ColumnName, t.name usertypename, c.max_length from sys.all_columns c inner join sys.types t on c.user_type_id = t.user_type_id inner join sys.all_objects o on c.object_id = o.object_id and o.type = 'U' WHERE o.name = '테이블명' 쿼리를 보면 이것저것 변환할 수 있을 듯.