久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

教你快速掌握DB2數據庫創建外鍵時的選項

瀏覽:2日期:2023-11-08 14:59:30
創建外鍵時的選項:

1.創建測試表:

drop table student;

drop table class;

drop table student_class;

Create table student(student_id integer not null,student_name varchar(200), CONSTRAINT P_KEY_1 primary key (student_id)) in luzl_32k_tb index in luzl_32k_tb ;

Create table class(class_id integer not null,class_name varchar(200), CONSTRAINT P_KEY_2 primary key (class_id)) in luzl_32k_tb index in luzl_32k_tb ;

Create table student_class(student_class_id integer,student_id integer,class_id integer) in luzl_32k_tb index in luzl_32k_tb;

alter table student_class add constraint if_class foreign key(class_id) references class(class_id) ON DELETE cascade ON UPDATE RESTRICT;

alter table student_class add constraint if_student foreign key(student_id) references student(student_id) ON DELETE cascade ON UPDATE RESTRICT;

Insert into student(student_id,student_name) values(1,'luzl');

Insert into class(class_id,class_name) values(1,'db2');

Insert into student_class(student_class_id,student_id,class_id) values(1,1,1);

2.On Delete 的選項有

Restrict/no action/cascade/set null.其中cascade選項指定的話,如果刪除父記錄,依賴于他的子記錄也會自動刪除.相當于級聯刪除.如果指定no action和cascade都會報錯,因為還有子記錄所以無法刪除該記錄.set nul允許刪除父記錄并且l會將子表中與父表關聯的字段設置為null.

3.On Update 只有兩個選項 no action/restrict.它們在更新和刪除時并沒有區別:如果與子表關聯不允許刪除.

4.另外還需要注意一點,父表中的字段必須是主鍵,才能做為子表的外鍵。

標簽: DB2 數據庫
主站蜘蛛池模板: 济源市| 韶关市| 云霄县| 承德市| 石景山区| 彩票| 开江县| 会昌县| 桐城市| 阜平县| 比如县| 涪陵区| 民丰县| 金堂县| 盐山县| 沂南县| 方正县| 定南县| 蓝田县| 佛教| 太和县| 义乌市| 开化县| 南城县| 浙江省| 庆元县| 庆云县| 广昌县| 二连浩特市| 西华县| 潜江市| 固镇县| 汉中市| 莎车县| 星子县| 新昌县| 金川县| 沁源县| 上蔡县| 哈密市| 枣庄市|