標籤:http int 添加 右鍵 end test exist bsp alter
使用SSMS資料庫管理工具修改CHECK約束
1、開啟資料庫,選擇資料表-》右鍵點擊-》選擇設計(或者展開約束,選擇約束,右鍵點擊,選擇修改,後面步驟相同)。
2、選擇要修改的資料列-》右鍵點擊-》選擇CHECK約束。
3、在CHECK約束彈出框中-》選擇要修改的約束-》輸入約束運算式-》輸入約束名和約束描述-》選擇資料表設計工具規則-》點擊關閉。
4、點擊儲存按鈕(或者ctrl+s)-》重新整理表查看修改結果。
使用T-SQL指令碼修改CHECK約束
CHECK約束修改規則必須首先刪除現有的CHECK
約束,然後使用新定義重新建立,才能使用Transact-SQL修改CHECK
約束。
文法:
--修改check約束
use 資料庫名
go
--如果約束存在則先刪除
if exists(select * from sysobjects where name=約束名)
alter table 表名 drop constraint 約束名;
go
--添加約束
alter table 表名
--with check --該約束是否應用於現有資料,with check表示應用於現有資料,with nocheck表示不應用於現有資料
add constraint 約束名
check
not for replication --當複製代理在表中插入或更新資料時,禁用該約束。
(約束運算式);
go
--向表中添加新資料或更新表中現有資料時是否禁用該約束。check表示校正,nocheck表示不校正
--alter table 表名
--check
--constraint 表名;
--go
--添加check約束描述
execute sp_addextendedproperty N‘MS_Description‘, N‘約束描述‘, N‘SCHEMA‘, N‘dbo‘, N‘TABLE‘, N‘表名‘, N‘CONSTRAINT‘, N‘約束名‘;
go
樣本:
--修改check約束
use testss
go
--如果約束存在則先刪除
if exists(select * from sysobjects where name=‘u_check2‘)
alter table test1 drop constraint u_check2;
go
--添加約束
alter table test1
--with check --該約束是否應用於現有資料,with check表示應用於現有資料,with nocheck表示不應用於現有資料
add constraint u_check2
check
not for replication --當複製代理在表中插入或更新資料時,禁用該約束。
(height>=100 and height <=200);
go
--向表中添加新資料或更新表中現有資料時是否禁用該約束。check表示校正,nocheck表示不校正
--alter table test1
--check
--constraint u_check2;
--go
--添加check約束描述
execute sp_addextendedproperty N‘MS_Description‘, N‘修改約束‘, N‘SCHEMA‘, N‘dbo‘, N‘TABLE‘, N‘test1‘, N‘CONSTRAINT‘, N‘u_check2‘;
go
CHECK約束修改優缺點
優點:
1、修改資料庫CHECK約束可以保證資料的規範性和完整性。
缺點:
1:修改約束的資料表設計工具使用規則時,可能會引起原有資料與約束的衝突。
SQLServer之修改CHECK約束