IT_Expert/DataBase
[MSSQL] 테이블 및 컬럼 조회 쿼리 (DESC 테이블명)
낫기법필
2009. 5. 4. 17:54
sp_tables
select name from sysobjects where type='U'
-- 테이블 리스트
select * from information_schema.tables
-- 컬럼 상세 정보
select * from information_schema.columns
where table_name = '테이블명'
order by 5