SQL外键约束

1.查询表已有的外键

select name  
from  sys.foreign_key_columns f join sys.objects o on f.constraint_object_id=o.object_id 
where f.parent_object_id=object_id('表名')

2.删除表外键

alter table 表名 drop constraint 外键约束名

3.添加外键

alter table 表名 add constraint 外键约束名 foreign key(列名) references 引用外键表(列名) 

 

posted @ 2017-08-30 14:44  风谷逍遥客  阅读(699)  评论(0编辑  收藏  举报