select col.name, col.column_id, st.name as DT_name, col.max_length, col.is_nullable, col.is_identity, defCst.definition from sys.columns col left outer join sys.types st on st.user_type_id = col.user_type_id left outer join sys.default_constraints defCst on defCst.parent_object_id = col.object_id and defCst.parent_column_id = col.column_id where col.object_id = object_id(N'dbo.Music') order by col.column_id아래 이미지는 실행 결과..
컬럼의 이름, 아이디, 형식 , 크기, null, identity, 기본 값 이 나온다. (원래는 더 많은 정보가 나오지만 필요한것만 나오도록 엄청 많이 삭제....)
'데이터베이스 > MSSQL' 카테고리의 다른 글
[MSSQL] PIVOT... (0) | 2011.01.31 |
---|---|
[MSSQL] 탭문자 확인 및 제거 (0) | 2010.11.18 |
[MSSQL] 데이터베이스에서 이메일 보내기 (0) | 2010.09.02 |
[MSSQL]2008 백업 파일을 2005에서 복원하기 (0) | 2010.07.21 |
[MSSQL] Database 리스트 (0) | 2010.07.02 |