MySQL主鍵和外來鍵使用及說明

2021-09-09 05:33:14 字數 3493 閱讀 5429

一、外來鍵約束

mysql通過外來鍵約束來保證表與表之間的資料的完整性和準確性。

外來鍵的使用條件:

1.兩個表必須是innodb表,myisam表暫時不支援外來鍵(據說以後的版本有可能支援,但至少目前不支援);

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

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

外來鍵的好處:可以使得兩張表關聯,保證資料的一致性和實現一些級聯操作;

外來鍵的定義語法:

[constraint symbol] foreign key [id] (index_col_name, ...)

references tbl_name (index_col_name, ...)

[on delete ]

[on update ]

該語法可以在 create table 和 alter table 時使用,如果不指定constraint symbol,mysql會自動生成乙個名字。

on delete、on update表示事件觸發限制,可設引數:

restrict(限制外表中的外來鍵改動)

cascade(跟隨外來鍵改動)

set null(設空值)

set default(設預設值)

no action(無動作,預設的)

簡單演示一下使用,做dage和xiaodi兩個表,大哥表是主鍵,小弟表是外來鍵

建表:

1create table `dage` (

2 `id` int(11) not null auto_increment,

3 `name` varchar(32) default '',

4 primary key (`id`))

5 engine=innodb default charset=latin1;

6 7create table `xiaodi` (

8 `id` int(11) not null auto_increment,

9 `dage_id` int(11) default null,

10 `name` varchar(32) default '',

11 primary key (`id`),

12 key `dage_id` (`dage_id`),

13 constraint `xiaodi_ibfk_1` foreign key (`dage_id`) references `dage` (`id`)

14) engine=innodb default charset=latin1;

插入個大哥:

1mysql> insert into dage(name) values('銅鑼灣');

2query ok, 1 row affected (0.01 sec)

3mysql> select * from dage;

4+----+--------+

5| id | name |

6+----+--------+

7| 1 | 銅鑼灣 |

8+----+--------+

91 row in set (0.00 sec)

插入個小弟:

1mysql> insert into xiaodi(dage_id,name) values(1,'銅鑼灣_小弟a');

2query ok, 1 row affected (0.02 sec)

34mysql> select * from xiaodi;

5+----+---------+--------------+

6| id | dage_id | name |

7+----+---------+--------------+

8| 1 | 1 | 銅鑼灣_小弟a |

9+----+---------+--------------+

把大哥刪除:

1mysql> delete from dage where id=1;

2error 1451 (23000): cannot delete or update a parent row: a foreign key constraint fails (`bstar/xiaodi`, constraint `xiaodi_ibfk_1` foreign key (`dage_id`) references `dage` (`id`))

插入乙個新的小弟:

1mysql> insert into xiaodi(dage_id,name) values(2,'旺角_小弟a');              

2error 1452 (23000): cannot add or update a child row: a foreign key constraint fails (`bstar/xiaodi`, constraint `xiaodi_ibfk_1` foreign key (`dage_id`) references `dage` (`id`))

3

把外來鍵約束增加事件觸發限制:

1mysql> show create table xiaodi;

2 3 constraint `xiaodi_ibfk_1` foreign key (`dage_id`) references `dage` (`id`)

4 5mysql> alter table xiaodi drop foreign key xiaodi_ibfk_1;

6query ok, 1 row affected (0.04 sec)

7records: 1 duplicates: 0 warnings:

8mysql> alter table xiaodi add foreign key(dage_id) references dage(id) on delete cascade on update cascade;

9query ok, 1 row affected (0.04 sec)

10records: 1 duplicates: 0 warnings: 0

再次試著把大哥刪了:

1mysql> delete from dage where id=1;

2query ok, 1 row affected (0.01 sec)

34mysql> select * from dage;

5empty set (0.01 sec)

67mysql> select * from xiaodi;

8empty set (0.00 sec)

哎呦,這回對應的小弟也沒了,沒辦法,誰讓你跟我on delete cascade(級聯限制)了呢!

MySQL主鍵和外來鍵使用及說明

mysql主鍵和外來鍵使用及說明 一 外來鍵約束 mysql通過外來鍵約束來保證表與表之間的資料的完整性和準確性。外來鍵的使用條件 1.兩個表必須是innodb表,myisam表暫時不支援外來鍵 據說以後的版本有可能支援,但至少目前不支援 2.外來鍵列必須建立了索引,mysql 4.1.2以後的版本...

簡述MySQL主鍵和外來鍵使用及說明

目錄 mysql通過外來鍵約束來保證表與表之間的資料的完整性和準確性。主鍵 是唯一標識一條記錄,wrwyvpq不能有重複的,不允許為空,用來保證資料完整性 外來鍵 是另一表的主鍵,外來鍵可以有重複的,可以是空值,用來和其他表建立聯絡用的。所以說,如果談到了外來鍵,一定是至少涉及到兩張表。例如下面這兩...

mysql 外來鍵說明 MySQL外來鍵使用及說明詳解

一 外來鍵約束 mysql通過外來鍵約束來保證表與表之間的資料的完整性和準確性。外來鍵的使用條件 1.兩個表必須是innodb表,myisam表暫時不支援外來鍵 據說以後的版本有可能支援,但至少目前不支援 2.外來鍵列必須建立了索引,mysql 4.1.2以後的版本在建立外來鍵時會自動建立索引,但如...