参照完整性通常通过外键(foreign key)的使用而被广泛应用。长久以来,流行工具开源rdbms mysql并没有支持外键,原因是这种支持将会降低rdbms的速度和性能。然而,由于很多用户对参照完整性的优点倍感兴趣,最近mysql的不同版本都通过新innodb列表引擎支持外键。由此,在数据库组成的列表中保持参照完整性将变得非常简单。
为了建立两个mysql表之间的一个外键关系,必须满足以下三种情况:
例子是理解以上要点的最好方法。如表a所示,建立两个表,其中一个列出动物种类及相应的代码(表名为:species),另一表列出动物园中的动物(表名为:zoo)。现在,我们想通过species关联这两个表,所以我们只需要接受和保存zoo表中包含species表中的合法动物的入口到数据库中。
表a
注意:对于非innodb表, foreign key 语句将被忽略。mysql> create table species (id tinyint not null auto_increment, name varchar(50) not null, primary key(id)) engine=innodb;query ok, 0 rows affected (0.11 sec)mysql> insert into species values (1, 'orangutan'), (2, 'elephant'), (3, 'hippopotamus'), (4, 'yak');query ok, 4 rows affected (0.06 sec)records: 4 duplicates: 0 warnings: 0mysql> create table zoo (id int(4) not null, name varchar(50) not null, fk_species tinyint(4) not null, index (fk_species), foreign key (fk_species) references species (id), primary key(id)) engine=innodb;
现在,fieldszoo.species与species.id 之间存在一个外键关系。只有相应的zoo.specie与species.idfield的一个值相匹配,动物表中的入口才可被访问。以下的输出即演示了当你想输入一个harry hippopotamus记录,而使用到不合法的species代码:
mysql> insert into zoo values (1, 'harry', 5);
error 1216 (23000): cannot add or update a child row: a foreign key constraint fails
这里,mysql核查species表以查看species代码是否存在,如果发现不存在,就拒绝该记录。当你输入正确代码的,可以与以上做比较。
mysql> insert into zoo values (1, 'harry', 3);
query ok, 1 row affected (0.06 sec)
这里,mysql核查species表以查看species代码是否存在,当发现存在,允许记录保存在zoo表中。
为了删除一个外键关系,首先使用show create table找出innodb的内部标签,如表b所示:
表 b
+-------+---------------------------------------------------+
| table | create table |
+-------+---------------------------------------------------+
| zoo | create table `zoo` (
`id` int(4) not null default '0',
`name` varchar(50) not null default '',
`fk_species` tinyint(4) not null default '0',
key `fk_species` (`fk_species`),
constraint `zoo_ibfk_1` foreign key (`fk_species`)
references `species` (`id`)
) engine=innodb default charset=latin1 |
+-------+----------------------------------------------------+
然后使用带有drop foreign key 语句的alter table命令,如以下:
mysql> alter table zoo drop foreign key zoo_ibfk_1;
query ok, 1 row affected (0.11 sec)
records: 1 duplicates: 0 warnings: 0
为了将一个外键添加到一个现成的表中,使用add foreign key的 alter table语句指定合适的域作为一个外键:
mysql> alter table zoo add foreign key (fk_species) references species (id);
query ok, 1 rows affected (0.11 sec)
records: 1 duplicates: 0 warnings: 0
如以上例子解释的,外键在捉摸数据入口错误上起着重要的作用,由此可建立更为强健更加集成的数据库。另一方面值得提到的是,执行外键核实是内部资料处理的过程,且不同表之间指定复杂的内部关系可以导致数据库的性能下降。所以,在参照完整性与性能考虑之间找到平衡点相当重要,而使用外键就是能够确保性能与稳健之间的最优结合。
我期望本期的有关外键的介绍对你有所好处,你将会在下回的mysql数据库设计中感受到外键的好处。编程快乐!
新闻热点
疑难解答