欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

关于MySQL外键的简单学习教程

程序员文章站 2024-02-24 09:06:55
在mysql中,innodb引擎类型的表支持了外键约束。 外键的使用条件: 1.两个表必须是innodb表,myisam表暂时不支持外键(据说以后的版本有可能支持,但至...

在mysql中,innodb引擎类型的表支持了外键约束。
外键的使用条件:
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 {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(无动作,默认的)


如果子表试图创建一个在父表中不存在的外键值,innodb会拒绝任何insert或update操作。如果父表试图update或者delete任何子表中存在或匹配的外键值,最终动作取决于外键约束定义中的on update和on delete选项。innodb支持5种不同的动作,如果没有指定on delete或者on update,默认的动作为restrict:

  1. cascade: 从父表中删除或更新对应的行,同时自动的删除或更新自表中匹配的行。on delete canscade和on update canscade都被innodb所支持。

  2. set null: 从父表中删除或更新对应的行,同时将子表中的外键列设为空。注意,这些在外键列没有被设为not null时才有效。on delete set null和on update set set null都被innodb所支持。

  3. no action: innodb拒绝删除或者更新父表。

  4. restrict: 拒绝删除或者更新父表。指定restrict(或者no action)和忽略on delete或者on update选项的效果是一样的。

  5. set default: innodb目前不支持。

  外键约束使用最多的两种情况无外乎:

  1)父表更新时子表也更新,父表删除时如果子表有匹配的项,删除失败;

  2)父表更新时子表也更新,父表删除时子表匹配的项也删除。

  前一种情况,在外键定义中,我们使用on update cascade on delete restrict;后一种情况,可以使用on update cascade on delete cascade。

  innodb允许你使用alter table在一个已经存在的表上增加一个新的外键:

alter table tbl_name
  add [constraint [symbol]] foreign key
  [index_name] (index_col_name, ...)
  references tbl_name (index_col_name,...)
  [on delete reference_option]
  [on update reference_option]

  innodb也支持使用alter table来删除外键:
alter table tbl_name drop foreign key fk_symbol;