4/12/2010

mssql 테이블정보보기

-- 테이블 리스트
select * from information_schema.tables

-- 컬럼 상세 정보
select * from information_schema.columns
where table_name = '테이블명'
order by 5

No comments:

Post a Comment