Detailed explanation of MySQL foreign key constraints

Detailed explanation of MySQL foreign key constraints

Official documentation:
https://dev.mysql.com/doc/refman/5.7/en/create-table-foreign-keys.html

1. Foreign key function:

MySQL uses foreign key constraints to ensure the integrity and accuracy of data between tables.

2. Conditions for using foreign keys

  • Both tables must be InnoDB tables. MyISAM tables do not support foreign keys for the time being (it is said that future versions may support it, but at least it is not supported at present)
  • The foreign key column must have an index created. MySQL 4.1.2 and later versions will automatically create an index when creating a foreign key, but if you use an earlier version, you need to create an index explicitly.
  • The columns of the two tables in the foreign key relationship must have similar data types, that is, columns that can be converted to each other, such as int and tinyint, but not int and char.

3. Create Grammar

[CONSTRAINT [symbol]] FOREIGN KEY
[index_name] (col_name, ...)
REFERENCES tbl_name (col_name,...)
[ON DELETE reference_option]
[ON UPDATE reference_option]

reference_option:
RESTRICT | CASCADE | SET NULL | NO ACTION | SET DEFAULT

This syntax can be used in CREATE TABLE and ALTER TABLE. If you do not specify the CONSTRAINT symbol, MYSQL will automatically generate a name.
ON DELETE and ON UPDATE indicate event triggering restrictions, and you can set parameters:
RESTRICT (restrict changes to foreign keys in foreign tables)
CASCADE (follow foreign key changes)
SET NULL
SET DEFAULT (Set the default value)
NO ACTION (no action, default)

CASCADE: Indicates that when the parent table is updated or deleted, the corresponding records in the child table are updated or deleted.
RESTRICT and NO ACTION: When the child table has related records, the parent table cannot be deleted or updated independently.
SET NULL: Indicates that when the parent table is updated or deleted, the corresponding fields of the child table are set to NULL

4. Case Demonstration

CASCADE constraint mode

1. Create the power table (parent table) country
create table country (
id int not null,
name varchar(30),
primary key(id)
);

2. Insert records insert into country values(1,'Western Europe');
insert into country values(2,'Maya');
insert into country values(3,'Sicily');

3. Create a arms table (sub-table) and establish constraints create table solider (
id int not null,
name varchar(30),
country_id int,
primary key(id),
foreign key(country_id) references country(id) on delete cascade on update cascade,
);

4. Reference integrity test insert into solider values(1,'Western European trainee infantry',1);
#insert successfully insert into solider values(2,'Maya short spearman',2);
#insert successfully insert into solider values(3,'Sicily Norman Knights',3)
#insert successfullyinsert into solider values(4,'French Swordsman',4);
#Insert failed because there is no faction with id 4 in the country table. 5. Constraint method test insert into solider values(4, 'Maya Tiger Warriors', 2);
#Successfully inserted delete from country where id=2;
#This will cause the records with id 2 and 4 in the solider table to be deleted at the same time, because this faction no longer exists in the parent table, so the corresponding arms will naturally disappear update country set id=8 where id=1;
#As a result, all records in the solider table with country_id 1 will also be modified to 8

With SET NULL constraint

1. Create a soldier table (sub-table) and establish a constraint relationship drop table if exists solider;
create table solider(
id int not null,
name varchar(30),
country_id int,
primary key(id),
foreign key(country_id) references country(id) on delete set null on update set null,
);

2. Reference integrity test insert into solider values(1,'Western European trainee infantry',1);
#insert successfully insert into solider values(2,'Maya short spearman',2);
#insert successfully insert into solider values(3,'Sicily Norman Knights',3)
#insert successfullyinsert into solider values(4,'French Swordsman',4);
#Insert failed because there is no faction with id 4 in the country table. 3. Constraint method test insert into solider values ​​(4, 'Sicilian Archer', 3);
#Successfully inserted delete from country where id=3;
#This will cause the records with id 3 and 4 in the solider table to be set to NULL
update country set id=8 where id=1;
# Causes all records in the solider table where country_id is 1 to be set to NULL

With NO ACTION or RESTRICT mode (default)

1. Create a soldier table (sub-table) and establish a constraint relationship drop table if exists solider;
create table solider(
id int not null,
name varchar(30),
country_id int,
primary key(id),
foreign key(country_id) references country(id) on delete RESTRICT on update RESTRICT,
);

2. Reference integrity test insert into solider values(1,'Western European trainee infantry',1);
#insert successfully insert into solider values(2,'Maya short spearman',2);
#insert successfully insert into solider values(3,'Sicily Norman Knights',3)
#insert successfullyinsert into solider values(4,'French Swordsman',4);
#Insert failed because there is no faction with id 4 in the country table 3. Constraint method test insert into solider values(4, 'Western European Knights', 1);
#Successfully inserted delete from country where id=1;
#An error occurred. There are related records in the child table, so the corresponding records in the parent table cannot be deleted. That is, the arms table also has arms belonging to Western Europe, so the Western European forces in the parent table cannot be deleted alone. update country set id=8 where id=1;
#Error, there are related records in the child table, so the parent table cannot be modified

The above is the detailed 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:
  • Specific method to add foreign key constraints in mysql
  • MySQL foreign key constraint (FOREIGN KEY) case explanation
  • Summary of MySQL foreign key constraints and table relationships
  • Example explanation of MySQL foreign key constraints
  • Introduction to MySQL method of deleting table data with foreign key constraints
  • Simple implementation of ignoring foreign key constraints when deleting MySQL tables
  • How to disable foreign key constraint checking in MySQL child tables
  • How to create and delete foreign key constraints in MySQL

<<:  Detailed tutorial on installing CUDA9.0 on Ubuntu16.04

>>:  Detailed explanation of vue.js dynamic components

Recommend

Summary of MySQL password modification methods

Methods for changing passwords before MySQL 5.7: ...

How to prevent users from copying web page content using pure CSS

Preface When I was typing my own personal blog, I...

How to set mysql to case insensitive

mysql set to case insensitive Windows Go to the d...

Steps of an excellent registration process

For a website, it is the most basic function. So l...

Using Docker to create static website applications (multiple ways)

There are many servers that can host static websi...

Implementation of mysql split function separated by commas

1: Define a stored procedure to separate strings ...

A detailed introduction to JavaScript primitive values ​​and wrapper objects

Table of contents Preface text Primitive types Pr...

Detailed explanation of how to mount remote file systems via SSH on Linux

Features of SSHFS: Based on FUSE (the best usersp...

Summary of Linux command methods to view used commands

There are many commands used in the system, so ho...

The difference between absolute path and relative path in web page creation

1. Absolute path First of all, on the local compu...

How to use Nginx proxy to surf the Internet

I usually use nginx as a reverse proxy for tomcat...

A brief analysis of the difference between FIND_IN_SET() and IN in MySQL

I used the Mysql FIND_IN_SET function in a projec...

9 Practical Tips for Creating Web Content Pages

Content 1. Give readers a reason to stay. Make the...

Solution for converting to inline styles in CSS (css-inline)

Talk about the scene Send Email Embedding HTML in...