'MSSQL'에 해당되는 글 8

  1. 2009.05.04 [MSSQL] 테이블 및 컬럼 조회 쿼리 (DESC 테이블명)

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