Data Modeling Evangelist Kaien Kim's Blog
[SQLServer]특정테이블의 컬럼정보 가져오기 본문
-- 특정테이블의 컬럼정보가져오기
select *
FROM INFORMATION_SCHEMA.COLUMNS
where table_name = 'Customer'
order by table_name,ordinal_position
-- 특정테이블의 PK정보가져오기
select constraint_name from information_schema.table_constraints
where constraint_type='PRIMARY KEY'
and table_name = 'Customer'
-- 특정테이블의 FK정보가져오기
select constraint_name from information_schema.table_constraints
where constraint_type='FOREIGN KEY'
and table_name = 'Customer'
select *
FROM INFORMATION_SCHEMA.COLUMNS
where table_name = 'Customer'
order by table_name,ordinal_position
-- 특정테이블의 PK정보가져오기
select constraint_name from information_schema.table_constraints
where constraint_type='PRIMARY KEY'
and table_name = 'Customer'
-- 특정테이블의 FK정보가져오기
select constraint_name from information_schema.table_constraints
where constraint_type='FOREIGN KEY'
and table_name = 'Customer'
'DATA > SQLServer' 카테고리의 다른 글
[SQLServer]DBCC명령어 모음 (0) | 2009.04.20 |
---|---|
[SQLServer] tempdb이동 (0) | 2009.02.09 |
[MSSQL]남은 디스크공간 알아내는 방법 (0) | 2008.11.21 |
카탈로그내에서 특정 컬럼을 참조하는 SP조회 (0) | 2008.11.13 |
[MSSQL]테이블 소유자 변경하기 (0) | 2008.08.20 |