Specific method to add foreign key constraints in mysql

Specific method to add foreign key constraints in mysql

The operating environment of this tutorial: Windows 7 system, MySQL 8 version, Dell G3 computer.

MySQL foreign key constraint (FOREIGN KEY) is a special field of a table, often used with primary key constraint. For two tables with an associated relationship, the table where the primary key in the associated field is located is the primary table (parent table), and the table where the foreign key is located is the secondary table (child table).

Foreign keys are used to establish an association between the primary table and the secondary table, to connect the data in the two tables, and to constrain the consistency and integrity of the data in the two tables.

When defining foreign keys, you need to follow the following rules:

  • The primary table must already exist in the database, or be the table currently being created. If it is the latter case, the master table and the slave table are the same table. Such a table is called a self-referential table, and this structure is called self-referential integrity.
  • A primary key must be defined for the primary table.
  • Primary keys cannot contain null values, but null values ​​are allowed in foreign keys. That is, as long as every non-null value of the foreign key appears in the specified primary key, the content of this foreign key is correct.
  • Specify a column name or combination of column names after the table name of the main table. This column or combination of columns must be the primary key or candidate key of the primary table.
  • The number of columns in the foreign key must be the same as the number of columns in the primary key of the primary table.
  • The data type of the foreign key column must be the same as the data type of the corresponding column in the primary key of the primary table.

Adding foreign key constraints to a table in mysql

Foreign key constraints can be added when modifying a table, but the prerequisite for adding foreign key constraints is that the data in the foreign key column of the slave table must be consistent with the data in the primary key column of the master table or there must be no data.

The syntax for adding a foreign key constraint when modifying a data table is as follows:

ALTER TABLE <table name> ADD CONSTRAINT <foreign key name>
FOREIGN KEY(<column name>) REFERENCES <primary table name> (<column name>);

Example

Modify the data table tb_emp2, set the field deptId as a foreign key, and associate it with the primary key id of the data table tb_dept1

mysql> ALTER TABLE tb_emp2
-> ADD CONSTRAINT fk_tb_dept1
-> FOREIGN KEY(deptId)
-> REFERENCES tb_dept1(id);
Query OK, 0 rows affected (1.38 sec)
Records: 0 Duplicates: 0 Warnings: 0
mysql> SHOW CREATE TABLE tb_emp2\G
*************************** 1. row ***************************
Table: tb_emp2
Create Table: CREATE TABLE `tb_emp2` (
`id` int(11) NOT NULL,
`name` varchar(30) DEFAULT NULL,
`deptId` int(11) DEFAULT NULL,
`salary` float DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `fk_tb_dept1` (`deptId`),
CONSTRAINT `fk_tb_dept1` FOREIGN KEY (`deptId`) REFERENCES `tb_dept1` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=gb2312
1 row in set (0.12 sec)

Note: When adding foreign key constraints to an already created data table, make sure that the values ​​of the columns to which the foreign key constraints are added all come from the primary key columns, and that the foreign key columns cannot be empty.

Content extension:

When to use foreign key constraints

To be honest, you don’t necessarily need to use foreign key constraints when using InnoDB tables in MySQL. However, in order to illustrate the function of foreign key constraints in some cases, we will use the code of the example mentioned above to explain it in detail. It includes two MyISAM tables, one for storing blog posts and one for storing comments.

When defining the database schema, we will establish a one-to-many relationship between these two tables by creating a foreign key in the comments table to map each row (i.e., comment) to a specific blog post. Here is the basic SQL code to create a sample MyISAM table:

DROP TABLE IF EXISTS `test`.`blogs`;

CREATE TABLE `test`.`blogs` (

`id` INT(10) UNSIGNED AUTO_INCREMENT,

`title` TEXT,

`content` TEXT,

`author` VARCHAR(45) DEFAULT NULL,

PRIROSE KEY (`id`)

)ENGINE=MyISAM DEFAULT CHARSET=utf8;


DROP TABLE IF EXISTS `test`.`comments`;

CREATE TABLE `test`.`comments` (

`id` INT(10) UNSIGNED AUTO_INCREMENT,

`blog_id` INT(10) UNSIGNED DEFAULT NULL,

`comment` TEXT,

`author` VARCHAR(45) DEFAULT NULL,

PRIROSE KEY (`id`)

)ENGINE=MyISAM DEFAULT CHARSET=utf8;

This is the end of this article about the specific method of adding foreign key constraints to MySQL. For more information about how to add foreign key constraints to MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to create and delete foreign key constraints in MySQL
  • MySQL database constraints and data table design principles
  • Detailed explanation of whether the MySQL database should use foreign key constraints
  • MySQL learning: five major constraints of database tables explained in detail for beginners
  • Detailed explanation of the six common constraint types in MySQL
  • A brief discussion on the difference between MYSQL primary key constraint and unique constraint
  • MySQL Constraints Super Detailed Explanation
  • MySQL not null constraint case explanation
  • How to set constraints for tables in MySQL database

<<:  Introduction and tips for using the interactive visualization JS library gojs

>>:  Pure client-side and pure server-side implementation solutions for HTML to PDF conversion

Recommend

React realizes secondary linkage effect (staircase effect)

This article shares the specific code of React to...

Tutorial on upgrading from Centos7 to Centos8 (with pictures and text)

If you upgrade in a formal environment, please ba...

Nginx proxy forwarding implementation code uploaded by Alibaba Cloud OSS

Preface Because the mini program upload requires ...

Detailed explanation of Windows time server configuration method

Recently, I found that the company's server t...

Docker data volume container creation and usage analysis

A data volume container is a container specifical...

Centos7 installation and configuration of Mysql5.7

Step 1: Get the MySQL YUM source Go to the MySQL ...

vue-table implements adding and deleting

This article example shares the specific code for...

Four ways to compare JavaScript objects

Table of contents Preface Reference Comparison Ma...

Introduction to the process of creating TCP connection in Linux system

Table of contents Steps to create TCP in Linux Se...

Mysql master-slave synchronization Last_IO_Errno:1236 error solution

What is the reason for the Last_IO_Errno:1236 err...

How to get the real path of the current script in Linux

1. Get the real path of the current script: #!/bi...

How to build DockerHub yourself

The Docker Hub we used earlier is provided by Doc...

WeChat applet uses canvas to draw clocks

This article shares the specific code of using ca...

Summary of common functions of PostgreSQL regular expressions

Summary of common functions of PostgreSQL regular...