小編給大家分享一下SQL如何實現(xiàn)約束,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)建站主營湘陰網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,手機APP定制開發(fā),湘陰h5微信小程序開發(fā)搭建,湘陰網(wǎng)站營銷推廣歡迎湘陰等地區(qū)企業(yè)咨詢
1、五種類型
非空not null 唯一unique 主鍵primary 外鍵foreign 檢查check
說明:
外鍵on delete cascade/set null選項要在外鍵定義的時候指定
2、視圖
user_constraints
user_cons_colums
3、創(chuàng)建
列級別 : constraint emp_id primary key 隨列一道設(shè)置
表級別 : constraint con_pk primary key(emp_id) 所有列定義完成后設(shè)置
4、刪除
alter table emp drop constraint
刪除not null : alter table emp02 modify deptno null;
cascade選項:
alter table dept02 drop constraint pk_dept02_deptno cascade;
刪除父表上的主鍵約束時,級聯(lián)把子表的外鍵約束先刪除
5、添加
alter table emp add constraint
增加not null: alter table emp02 modify empno not null;
6、失效生效
alter table .. disable constraint ...
alter table .. enable constraint ...
以上是“SQL如何實現(xiàn)約束”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!