SQL中約束和觸發器的停用與啟用

2022-04-05 21:03:23 字數 329 閱讀 4064

如何對sql中的約束和觸發器進行停用與啟用,如果有外來鍵約束則相關聯表都要進行相應操作。

alter

table tablename check constrait all --檢查約束

alter

table tablename nocheck constrait all --不檢查約束

alter

table tablename enable triger all --允放觸發器

alter

table tablename disable triger all --禁止觸發器

SQL中約束和觸發器的停用與啟用

如何對sql中的約束和觸發器進行停用與啟用,如果有外來鍵約束則相關聯表都要進行相應操作。alter table tablename check constrait all 檢查約束 alter table tablename nocheck constrait all 不檢查約束 alter tab...

SQL 約束與觸發器1

表a的外來鍵,一定是其他某個表b的主鍵或有unique宣告的屬性。a的外來鍵的值,一定是對應表b中相應的屬性值。空值除外 方法1 屬性名 型別 references 表名 屬性名 方法2 foreign key 屬性名 reference 表名 屬性名 create table studio nam...

SQL 觸發器 外來鍵約束

1 構造乙個觸發器audit log,在向employees test表中插入一條資料的時候,觸發插入相關的資料到audit中。create table employees test id int primary key not null,name text not null,age int not...