SQLServer之修改CHECK約束

來源:互聯網
上載者:User

標籤: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約束

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.