天天看點

8、mysql外鍵(FOREIGN KEY)的簡單使用

一、基本概念

1、MySQL中“鍵”和“索引”的定義相同,是以外鍵和主鍵一樣也是索引的一種。不同的是MySQL會自動為所有表的主鍵進行索引,但是外鍵字段必須由使用者進行明确的索引。用于外鍵關系的字段必須在所有的參照表中進行明确地索引,InnoDB不能自動地建立索引。

2、外鍵可以是一對一的,一個表的記錄隻能與另一個表的一條記錄連接配接,或者是一對多的,一個表的記錄與另一個表的多條記錄連接配接。

3、如果需要更好的性能,并且不需要完整性檢查,可以選擇使用MyISAM表類型,如果想要在MySQL中根據參照完整性來建立表并且希望在此基礎上保持良好的性能,最好選擇表結構為innoDB類型。

4、外鍵的使用條件

① 兩個表必須是InnoDB表,MyISAM表暫時不支援外鍵

② 外鍵列必須建立了索引,MySQL 4.1.2以後的版本在建立外鍵時會自動建立索引,但如果在較早的版本則需要顯式建立;

③ 外鍵關系的兩個表的列必須是資料類型相似,也就是可以互相轉換類型的列,比如int和tinyint可以,而int和char則不可以;

5、外鍵的好處:可以使得兩張表關聯,保證資料的一緻性和實作一些級聯操作。

二、使用方法

1、建立外鍵的文法:

外鍵的定義文法:

[CONSTRAINT symbol] FOREIGN KEY [id] (index_col_name, ...)

    REFERENCES tbl_name (index_col_name, ...)

    [ON DELETE {RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT}]

    [ON UPDATE {RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT}]

    該文法可以在 CREATE TABLE 和 ALTER TABLE 時使用,如果不指定CONSTRAINT symbol,MYSQL會自動生成一個名字。

ON DELETE、ON UPDATE表示事件觸發限制,可設參數:

① RESTRICT(限制外表中的外鍵改動,預設值)

② CASCADE(跟随外鍵改動)

③ SET NULL(設空值)

④ SET DEFAULT(設預設值)

⑤ NO ACTION(無動作,預設的)

2、示例

1)建立表1

create table repo_table(

repo_id char(13) not null primary key,

repo_name char(14) not null)

type=innodb;

建立表2

mysql> create table busi_table(

    -> busi_id char(13) not null primary key,

    -> busi_name char(13) not null,

    -> repo_id char(13) not null,

    -> foreign key(repo_id) references repo_table(repo_id))

-> type=innodb;

2)插入資料

insert into repo_table values("12","sz"); //success

insert into repo_table values("13","cd"); //success

insert into busi_table values("1003","cd", "13"); //success

insert into busi_table values("1002","sz", "12"); //success

insert into busi_table values("1001","gx", "11"); //failed,提示:

ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`smb_man`.`busi_table`, CONSTRAINT `busi_table_ibfk_1` FOREIGN KEY (`repo_id`) REFERENCES `repo_table` (`repo_id`))

3)增加級聯操作

mysql> alter table busi_table

    -> add constraint id_check

    -> foreign key(repo_id)

    -> references repo_table(repo_id)

    -> on delete cascade

    -> on update cascade;

-----

ENGINE=InnoDB DEFAULT CHARSET=gb2312; //另一種方法,可以替換type=innodb;

3、相關操作

外鍵限制(表2)對父表(表1)的含義:

    在父表上進行update/delete以更新或删除在子表中有一條或多條對應比對行的候選鍵時,父表的行為取決于:在定義子表的外鍵時指定的on update/on delete子句。

關鍵字

含義

CASCADE

删除包含與已删除鍵值有參照關系的所有記錄

SET NULL

修改包含與已删除鍵值有參照關系的所有記錄,使用NULL值替換(隻能用于已标記為NOT NULL的字段)

RESTRICT

拒絕删除要求,直到使用删除鍵值的輔助表被手工删除,并且沒有參照時(這是預設設定,也是最安全的設定)

NO ACTION

啥也不做

4、其他

在外鍵上建立索引:

index repo_id (repo_id),

foreign key(repo_id) references repo_table(repo_id))

參考

【1】 w3school關于mysql的專題講解

<a href="http://www.w3school.com.cn/sql/sql_foreignkey.asp">http://www.w3school.com.cn/sql/sql_foreignkey.asp</a>

【2】 MySQL C API programming tutorial

<a href="http://zetcode.com/tutorials/mysqlcapitutorial/">http://zetcode.com/tutorials/mysqlcapitutorial/</a>

【3】 對外鍵的使用示例,很不錯

<a href="http://hi.baidu.com/wangzhiqing999/blog/item/08761705954e18c4267fb523.html">http://hi.baidu.com/wangzhiqing999/blog/item/08761705954e18c4267fb523.html</a>

<a href="http://www.cppblog.com/wolf/articles/69089.html">http://www.cppblog.com/wolf/articles/69089.html</a>

【4】 mysql官網英文網站

<a href="http://dev.mysql.com/doc/refman/5.5/en/innodb-foreign-key-constraints.html">http://dev.mysql.com/doc/refman/5.5/en/innodb-foreign-key-constraints.html</a>

中文網站

<a href="http://dev.mysql.com/doc/refman/5.1/zh/sql-syntax.html">http://dev.mysql.com/doc/refman/5.1/zh/sql-syntax.html</a>

【5】 對外鍵講解的比較全面,可以一讀

<a href="http://www.xiaoxiaozi.com/2009/07/12/1158/">http://www.xiaoxiaozi.com/2009/07/12/1158/</a>

<a href="http://feidaodalian.iteye.com/blog/550179">http://feidaodalian.iteye.com/blog/550179</a>