删除SQL约束的方法.sql 1.1 KB

123456789101112131415161718192021222324252627282930
  1. 在SQL数据库中,如果需要删除表约束,应该如何操作呢?下面就将为您介绍删除SQL表约束的方法,供您参考,希望对您有所帮助。
  2. 1)禁止所有表约束的SQL
  3. select 'alter table '+name+' nocheck constraint all' from sysobjects where type='U'
  4. 2)删除所有表数据的SQL
  5. select 'TRUNCATE TABLE '+name from sysobjects where type='U'
  6. 3)恢复所有表约束的SQL
  7. select 'alter table '+name+' check constraint all' from sysobjects where type='U'
  8. 4)删除某字段的约束
  9. declare @name varchar(100)
  10. --DF为约束名称前缀
  11. select @name=b.name from syscolumns a,sysobjects b where a.id=object_id('表名') and b.id=a.cdefault and a.name='字段名' and b.name like 'DF%'
  12. --删除约束
  13. alter table 表名 drop constraint @name
  14. --为字段添加新默认值和约束
  15. ALTER TABLE 表名 ADD CONSTRAINT @name DEFAULT (0) FOR [字段名]对字段约束进行更改
  16. --删除约束
  17. ALTER TABLE tablename
  18. Drop CONSTRAINT 约束名
  19. --修改表中已经存在的列的属性(不包括约束,但可以为主键或递增或唯一)
  20. ALTER TABLE tablename
  21. alter column 列名 int not null
  22. --添加列的约束
  23. ALTER TABLE tablename
  24. ADD CONSTRAINT DF_tablename_列名 DEFAULT(0) FOR 列名
  25. --添加范围约束
  26. alter table tablename add check(性别 in ('M','F'))