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:
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:
|
<<: 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
This article shares the specific code of React to...
If you upgrade in a formal environment, please ba...
Preface Because the mini program upload requires ...
Recently, I found that the company's server t...
A data volume container is a container specifical...
Step 1: Get the MySQL YUM source Go to the MySQL ...
This article example shares the specific code for...
Table of contents Million-level data processing s...
Table of contents Preface Reference Comparison Ma...
Table of contents Steps to create TCP in Linux Se...
What is the reason for the Last_IO_Errno:1236 err...
1. Get the real path of the current script: #!/bi...
The Docker Hub we used earlier is provided by Doc...
This article shares the specific code of using ca...
Summary of common functions of PostgreSQL regular...