向已有表中添加惟一性
ALTER TABLE 表名 ADD CONSTRAINT 列的约束名 UNIQUE(添加惟一性的字段名)
注:约束名自定
向已有表中删除惟一性
alter table student drop constraint 列的约束名
注:约束名可用sp_helpconstraint student查询
ALTER TABLE 表名 ADD CONSTRAINT 列的约束名 UNIQUE(添加惟一性的字段名)
注:约束名自定
向已有表中删除惟一性
alter table student drop constraint 列的约束名
注:约束名可用sp_helpconstraint student查询