网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 sql server删除外键约束
内容
    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
    --第三步:检查表上是否还有外键约束
    --只要使用第一步里面的查找语句即可
    alter table mytable drop index mdl_tag_use_ix;//mdl_tag_use_ix是上表查出的索引名,key_name
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/20 4:06:46