首页 > 数据库技术 > 详细

sql语句添加删除外键

时间:2014-05-08 11:46:40      阅读:386      评论:0      收藏:0      [点我收藏+]
1
2
3
4
5
6
7
8
9
10
11
--删除外键
alter table HelpTextInfo drop constraint HelpTextInfo_Helptype_FK1
 
--增加外键
alter   table HelpTextInfo add constraint HelpTextInfo_Helptype_FK1 foreign key (helptypeid) references Helptype(helptypeid)
 
--不检查约束
alter table HelpTextInfo nocheck constraint HelpTextInfo_Helptype_FK1
 
--检查约束
alter table HelpTextInfo check constraint HelpTextInfo_Helptype_FK1

  

sql语句添加删除外键,布布扣,bubuko.com

sql语句添加删除外键

原文:http://www.cnblogs.com/yuanhang/p/3714347.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!