删除SQL约束的⽅法
在SQL数据库中,如果需要删除表约束,应该如何操作呢?下⾯就将为您介绍删除SQL表约束的⽅法,供您参考,希望对您有所帮助。--1)禁⽌所有表约束的SQL
select'alter table '+name+' nocheck constraint all'from sysobjects where type='U'
--2)删除所有表数据的SQL
select'TRUNCATE TABLE '+name from sysobjects where type='U'
--3)恢复所有表约束的SQL
select'alter table '+name+' check constraint all'from sysobjects where type='U'
drop删除表--4)删除某字段的约束
declare@name varchar(100)
--DF为约束名称前缀
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%'
--删除约束
alter table表名drop constraint@name
--为字段添加新默认值和约束
ALTER TABLE表名ADD CONSTRAINT@name DEFAULT (0) FOR[字段名]对字段约束进⾏更改
--删除约束
ALTER TABLE tablename
Drop CONSTRAINT约束名
--修改表中已经存在的列的属性(不包括约束,但可以为主键或递增或唯⼀)
ALTER TABLE tablename
alter column列名int not null
--添加列的约束
ALTER TABLE tablename
ADD CONSTRAINT DF_tablename_列名DEFAULT(0) FOR列名
--添加范围约束
alter table  tablename  add check(性别in ('M','F'))

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。