程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫

外鍵

編輯:關於MYSQL數據庫

外鍵關系允許把一個數據表裡的一個索引聲明為另一數據表裡的一個索引有關聯關系,還允許對外鍵所在的數據表設置一些操作處理方面的約束條件。數據庫根據外鍵關系定義的規則來維護引用完性。

MySQLl裡的外鍵支持是由InnoDB數據表處理程序提供的。

create table parent

(

par_id int not null,

parimary key(par_id)

)type = innodb;

create table child

(

par_id int not null,

child_id int not null,

primary key(par_id,child_id),

foreign key(par_id) references parent(par_id) on delete cascade

) type = innodb;

自己參考用

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved