SQL Server删除外键约束

本文详细介绍了如何在SQL环境中查找并删除数据库表上的外键约束,包括使用SQL Server的sp_helpconstraint和altertable命令进行操作。

来源:http://zhidao.baidu.com/question/150790965


  
x先找出约束名字
然后删除它
我给个例子

-- 测试环境
--
主表
create table test1(id int primary key not null ,value int )
insert test1 select 1 , 2
go
-- 从表
create table test2(id int references test1(id),value int )
go
-- 第一步:找出test2表上的外键约束名字
--
2000
exec sp_helpconstraint ' test2 '
-- 可以在constraint_name 属性中找到外键约束名字
--
2005
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 ( ' test2 ' )
/*
name
---------------------------------
FK__test2__id__08EA5793
*/

-- 第二步:删除外键约束
alter table test2 drop constraint FK__test2__id__08EA5793

-- 第三步:检查表上是否还有外键约束
--
只要使用第一步里面的查找语句即可

 

转载于:https://www.cnblogs.com/stu-acer/archive/2010/08/02/1790678.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值