MSSQL 테이블 목록 및 컬럼 정보 보기
페이지 정보
본문
1. 테이블 목록보기
sp_tables
select * from information_schema.tables
2. 컬럼 상세내용보기
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 = '테이블명'
column_name : 테이블의 컬럼(Column) 정보
data_type : 컬럼(Column)의 데이타 타입
ORDINAL_POSITION : 테이블을 조회하였을 때 나오는 컬럼의 위치
IS_NULLABLE : 컬럼(Column)에 NULL 허용여부 (YES/NO)
참고자료
http://blog.nlinux.com/16
http://bbaksae.tistory.com/34
댓글목록
등록된 댓글이 없습니다.