标签:检查 int 启用 lte 删除 nbsp add ons table
一、在已有数据表中,添加一个约束,但不让这个约束使用到已存在的数据中,在执行ALTER TABLE语句添加时使用WITH NOCHECK子句,这样新增的约束就不会去约束已存在的数据,而只会对新增的数据进行约束检查:
alter table [tablename] with nochek add constraint [ ck_XXX] check (核查条件)
二、NOCHECK还可以禁用约束,禁用就不用删除这个约束:
alter table [tablename] nocheck constraint [ck_XXX]
如果想重新启用约束:
alter table [tablename] check constraint [ck_xxx]
sql server 对已有数据的表,添加核查约束 [失败],请使用with nocheck 子句
标签:检查 int 启用 lte 删除 nbsp add ons table
原文地址:https://www.cnblogs.com/liujn0829/p/9076203.html