Programming &/Database
MSSQL 에서 테이블의 컬럼 정보를 볼려면...mysql, oracle의 DESC 명령어처럼..
마법눈
2009. 9. 22. 17:38
테이블 목록보기
sp_tables
select * from information_schema.tables
컬럼 상세내용보기
sp_columns 테이블명
select * from information_schema.columns where table_name = '테이블명'
select column_name, data_type, character_maximum_length, column_default from information_schema.columns where table_name = '테이블명'