반응형
참조키 삭제 구문
alter table 참조하는 테이블명 drop constraint 등록된 FK(제약조건키)명
ex) alter table TABLE_A drop constraint FK_TABLEA
alter table 참조하는 테이블명
add constraint FK(제약조건키)명 key (FK를 설정할 칼럼) references 참조되는 테이블 (참조할 테이블의 PK)
ex)alter table 참조하는 TABLE_A add constraint FK_TABKEA foreign key (ID) references TABLE_B (ID)
반응형
'DataBase > MS SQL' 카테고리의 다른 글
mssql - money 단위 (0) | 2017.01.06 |
---|---|
try catch finally (0) | 2016.02.25 |
% 퍼센트수수료 계산하기 (0) | 2016.01.08 |
mssql 입력값 암호화 (0) | 2015.11.25 |
하나의 쿼리로 여러개의 쿼리를 한번에 뿌리기 (0) | 2012.04.24 |
Comments