SQLServer之刪除約束

來源:互聯網
上載者:User

標籤:src   技術分享   tab   查看   com   object   sel   bubuko   指令碼   

使用SSMS資料庫管理工具刪除約束

1、串連資料庫,選擇資料表-》展開鍵或者約束-》選擇要刪除的約束-》右鍵點擊-》選擇刪除。

2、在刪除對象彈出框中-》點擊確定。

3、重新整理表-》展開鍵或者約束-》查看結果。

使用T-SQL指令碼刪除約束

文法:

--聲明資料庫使用
use 資料庫名;
go

--判斷是否存在約束,如果存在則刪除,如果不存在則不刪除
if exists(select * from sysobjects where name=約束名)
alter table 表名 drop constraint 約束名;
go

樣本:

--聲明資料庫使用
use testss;
go

--判斷是否存在約束,如果存在則刪除,如果不存在則不刪除
if exists(select * from sysobjects where name=‘default1‘)
alter table test1 drop constraint default1;
go

刪除約束總結

刪除操作無法復原,在生產資料庫中,不管約束是否有用,都需要謹慎操作刪除,正確的操作是先備份再刪除。

 

SQLServer之刪除約束

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.