MySQL's foreign key constraint is used to establish a link between two tables. If one table changes, the other table also changes. From this feature, it is mainly to ensure the consistency and integrity of table data. 1. The parent table must already exist in the database or be the table currently being created. If it is the latter case, the parent table and the child table are the same table. Such a table is called a self-referencing table, and this structure is called self-referencing. mysql:yeyztest ::>>create table fk_test_1( -> id int not null primary key auto_increment, -> name varchar() default ''); Query OK, rows affected (0.10 sec) mysql:yeyztest ::>>create table fk_test_2( -> id int not null primary key auto_increment, -> uid int, -> foreign key fk_uid(uid) references fk_test_1(id)); Query OK, rows affected (0.06 sec) Here we create two tables, one is fk_test_1 and the other is fk_test_2. A foreign key is set on the uid column of fk_test_2 to associate the id column of the table of fk_test_1. It is obvious here that fk_test_1 is the parent table and fk_test_2 is the child table. Next, we will conduct a data insertion experiment. mysql:yeyztest ::>>insert into fk_test_1 values (,'aaa'),(,'bbb'); Query OK, rows affected (0.00 sec) Records: Duplicates: Warnings: mysql:yeyztest ::>>select * from fk_test_1; +----+------+ | id | name | +----+------+ | | aaa | | | bbb | +----+------+ rows in set (0.00 sec) mysql:yeyztest ::>>insert into fk_test_2 values (,),(,); Query OK, rows affected (0.00 sec) Records: Duplicates: Warnings: mysql:yeyztest ::>>insert into fk_test_2 values (,); Query OK, row affected (0.00 sec) mysql:yeyztest ::>>insert into fk_test_2 values (,); ERROR (): Cannot add or update a child row: a foreign key constraint fails (`yeyztest`.`fk_test_2`, CONSTRAINT `fk_test_2_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `fk_test_1` (`id`)) First, insert two pieces of data into the main table, namely id=1 and id=2, and then insert data into the child table. The child table can successfully insert data with uid=1 and uid=2, but it fails when inserting data with uid=3. That is to say, by default, when inserting into the child table, the inserted foreign key associated field value must be the value contained in the associated column of the parent table. Note the default situation here, which will be explained later. Let’s look at the deletion situation. mysql:yeyztest ::>>select * from fk_test_2; +----+------+ | id | uid | +----+------+ | | | | | | | | | +----+------+ rows in set (0.00 sec) mysql:yeyztest ::>>delete from fk_test_2 where id=; Query OK, row affected (0.00 sec) mysql:yeyztest ::>>select * from fk_test_1; +----+------+ | id | name | +----+------+ | | aaa | | | bbb | +----+------+ rows in set (0.00 sec) mysql:yeyztest ::>>delete from fk_test_1 where id=; ERROR (): Cannot delete or update a parent row: a foreign key constraint fails (`yeyztest`.`fk_test_2`, CONSTRAINT `fk_test_2_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `fk_test_1` (`id`)) It can be seen that there is no problem in deleting on the child table fk_test_2, but when deleting on the parent table fk_test_1, it shows that the value of id=1 cannot be deleted. The reason is that there is a foreign key constraint. That is to say, by default, when deleting from the parent table, the column value that already has a dependent association in the child table cannot be directly deleted. Note the defaults here, which will be explained below. Since delete failed, try update. mysql:yeyztest ::>>update fk_test_1 set id= where id=; ERROR (): Cannot delete or update a parent row: a foreign key constraint fails (`yeyztest`.`fk_test_2`, CONSTRAINT `fk_test_2_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `fk_test_1` (`id`)) mysql:yeyztest ::>>update fk_test_1 set name='ccc' where id=; Query OK, row affected (0.00 sec) Rows matched: Changed: Warnings: It can be seen that updating the primary key column of the parent table still cannot be successfully executed, but updating other columns can be successfully executed. At this point, we already know that the existence of foreign keys is to ensure the integrity and unity of the data, but it also brings a little problem, that is, any column in the parent table that is dependent on the child table cannot be deleted. This is not what we want. Some data will indeed expire, and we need to delete it, so what should we do at this time? In the above test, we repeatedly mentioned a word, that is, by default, we did not set the deletion and update rules of foreign keys. Here MySQL helped us use the most stringent rule, which is restrict. In fact, there are some other rules, all of which are listed here:
cascade, set null, no action, restrict
cascade, set null, no action, restrict in
The syntax for setting an association is as follows: alter table table name add constraint FK_ID foreign key (foreign key field name) references foreign table name (primary key field name) [on delete {cascade | set null | no action | restrict}] [on update {cascade | set null | no action | restrict}] Now let's test the other three cases, starting with the cascade case: mysql:yeyztest ::>>select * from fk_test_1; +----+------+ | id | name | +----+------+ | | ccc | | | bbb | +----+------+ rows in set (0.00 sec) mysql:yeyztest ::>>select * from fk_test_2; +----+------+ | id | uid | +----+------+ | | | | | | +----+------+ rows in set (0.00 sec) mysql:yeyztest ::>>show create table fk_test_2\G *************************** 1. row *************************** Table: fk_test_2 Create Table: CREATE TABLE `fk_test_2` ( `id` int() NOT NULL AUTO_INCREMENT, `uid` int() DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_uid` (`uid`), CONSTRAINT `fk_test_2_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `fk_test_1` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT= DEFAULT CHARSET=utf8 row in set (0.00 sec) mysql:yeyztest ::>>alter table fk_test_2 drop foreign key fk_test_2_ibfk_1; Query OK, rows affected (0.02 sec) Records: Duplicates: Warnings: mysql:yeyztest ::>>alter table fk_test_2 add constraint fk_uid foreign key (uid) references fk_test_1(id) on delete cascade; Query OK, rows affected (0.03 sec) Records: Duplicates: Warnings: ####################################### ####Delete the record of parent table id= here and check the result of child table### ####################################### mysql:yeyztest ::>>delete from fk_test_1 where id=; Query OK, row affected (0.00 sec) mysql:yeyztest ::>>select * from fk_test_1; +----+------+ | id | name | +----+------+ | | ccc | +----+------+ row in set (0.00 sec) mysql:yeyztest ::>>select * from fk_test_2; +----+------+ | id | uid | +----+------+ | | | +----+------+ row in set (0.00 sec) It can be seen that at the beginning, the values of the parent table include the values of id=1 and id=2, and the values of the child table include the values of uid=2 and uid=1. When we delete the value of id=2 in the parent table, the value of uid=2 in the child table is also deleted directly. This is the role of cascade, that is, cascade deletion. Let's take a look at the case of set null: mysql:yeyztest ::>>alter table fk_test_2 drop foreign key fk_uid; Query OK, row affected (0.02 sec) Records: Duplicates: Warnings: mysql:yeyztest ::>>alter table fk_test_2 add CONSTRAINT `fk_uid` FOREIGN KEY (`uid`) REFERENCES `fk_test_1` (`id`) ON DELETE set null; Query OK, row affected (0.03 sec) Records: Duplicates: Warnings: mysql:yeyztest ::>>delete from fk_test_1 where id=; Query OK, row affected (0.00 sec) mysql:yeyztest ::>>select *from fk_test_1; Empty set (0.00 sec) mysql:yeyztest ::>>select *from fk_test_2; +----+------+ | id | uid | +----+------+ | | NULL | +----+------+ row in set (0.00 sec) It can be seen that after setting set null, when the parent table deletes the value of id=1, the value of uid in the child table becomes null, and the record is not deleted. The no action situation is similar, except that the records in the child table are not modified. The above is the operation of deleting the parent table. When the parent table is updated, the child table can also choose the above four situations, which are basically the same as delete, and will not be repeated here. If you are interested, you can test it yourself. Finally, it should be noted that the foreign key column of the child table can have null values. mysql:yeyztest ::>>insert into fk_test_1 values (,); Query OK, row affected (0.00 sec) mysql:yeyztest ::>>select *from fk_test_2; +----+------+ | id | uid | +----+------+ | | NULL | +----+------+ row in set (0.00 sec) mysql:yeyztest ::>>insert into fk_test_2 values (,NULL); Query OK, row affected (0.00 sec) mysql:yeyztest ::>>insert into fk_test_2 values (,NULL); Query OK, row affected (0.00 sec) mysql:yeyztest ::>>select * from fk_test_2; +----+------+ | id | uid | +----+------+ | | NULL | | | NULL | | | NULL | +----+------+ rows in set (0.00 sec) The above is the detailed content of the example explanation of MySQL foreign key constraints. For more information about MySQL foreign key constraints, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Alibaba Cloud Server Linux System Builds Tomcat to Deploy Web Project
>>: JavaScript function syntax explained
We have many servers that are often interfered wi...
<br />"There are no ugly women in the w...
Recently, I have a need to list all host names in...
This article example shares the specific code of ...
Table of contents 1. Description 2. Download rela...
Table of contents 1. Parent component passes valu...
background In data warehouse modeling, the origin...
1. left(name,4) intercepts the 4 characters on th...
As shown below: XML/HTML CodeCopy content to clip...
I didn't intend to write this blog, but durin...
1.1 Data Type Overview The data type is a field c...
This article shares the specific code of WeChat a...
Preface What is the role of an agent? - Multiple ...
Currently implemented are basic usage, clearable,...
Table of contents Vue2.x Usage Global Registratio...