删除SQL Server外键约束的实例


  本文标签:SQL Server外键约束

  如果需要删除SQL Server外键约束,应该如何操作呢?下面将为您举例说明如何删除SQL Server外键约束,希望对您有所启迪  。

  下面给个例子

  1. --测试环境  
  2. --主表  
  3. create table test1(id int primary key not null,value int)  
  4. insert test1 select 1,2  
  5. go  
  6. --从表  
  7. create table test2(id int references test1(id),value int)  
  8. go  
  9. --第一步:找出test2表上的外键约束名字  
  10. --2000  
  11. exec sp_helpconstraint test2  
  12. --可以在constraint_name 属性中找到外键约束名字  
  13. --2005  
  14. select name    
  15. 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)  
  16. /*  
  17. name  
  18. ---------------------------------  
  19. FK__test2__id__08EA5793*/  
  20. --第二步:删除外键约束  
  21. alter table test2 drop constraint FK__test2__id__08EA5793   
  22. --第三步:检查表上是否还有外键约束  
  23. --只要使用第一步里面的查找语句即可