日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
教你快速掌握DB2數(shù)據(jù)庫創(chuàng)建外鍵時的選項

創(chuàng)建外鍵時的選項:

  1.創(chuàng)建測試表:

  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選項指定的話,如果刪除父記錄,依賴于他的子記錄也會自動刪除.相當(dāng)于級聯(lián)刪除.如果指定no action和cascade都會報錯,因為還有子記錄所以無法刪除該記錄.set nul允許刪除父記錄并且l會將子表中與父表關(guān)聯(lián)的字段設(shè)置為null.

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

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

文中的介紹有一部分時以代碼的形式展現(xiàn)出來的,可能對與剛?cè)腴T的初學(xué)者來說比較難理解,本文為大家啊整理的條理比較明了,希望對大家寓所幫助。


當(dāng)前標(biāo)題:教你快速掌握DB2數(shù)據(jù)庫創(chuàng)建外鍵時的選項
文章網(wǎng)址:http://m.5511xx.com/article/cdihpjd.html