search
HomeDatabaseMysql TutorialSummary of MySQL foreign key constraint knowledge points

This article brings you relevant knowledge about mysql, which mainly organizes the related issues of foreign key constraints. Foreign key constraints (Foreign Key) are between two data tables in the database. A connection established by a certain column. This connection is usually caused by fields with exactly the same meaning in actual scenarios. Let’s take a look at them together. I hope it will be helpful to everyone.

Summary of MySQL foreign key constraint knowledge points

Recommended learning: mysql video tutorial

1. The role of MySQL foreign key constraints

Foreign key constraints ( Foreign Key) is a relationship established by a column between two data tables in the database. This connection is usually caused by fields with exactly the same meaning in actual scenarios. Through the introduction of foreign key constraints, MySQL can make the data integrity in the data table stronger and more consistent with the display situation. Below, I give an example to illustrate the role of MySQL foreign key constraints.
If we build a database for the university student performance management system, there are two tables. One table is the student table, which stores the student's student number, name, gender, department and other information, and the other table is the grade table. Information such as student ID number, course number, test scores, etc. are stored. In this way, a foreign key constraint will be established between the two tables through the student number. It is natural for us to think that the student ID number in the transcript table depends on the existence of the student ID number in the student table. If a student graduates, or drops out, and is deleted from the student table, then his related grades are not necessary in the transcript table. exists. Before creating a foreign key relationship, these two tables exist completely independently. We can forcibly insert a related score of a non-existent student into the score table, or we can forcibly delete a student in the student table, regardless of the score information. Whether it exists in the score sheet. However, after establishing a foreign key relationship, the MySQL database will constrain the above two behaviors. Every time data is inserted or deleted, the data integrity will be checked, so that our operations must conform to the actual situation.

2. Creation of foreign key constraints

(1) Conditions for creating foreign key constraints

To create a foreign key in MySQL database, the following four things need to be met conditions, otherwise it will be rejected by the MySQL database:
1. The table and columns used to create the foreign key exist
2. The columns that make up the foreign key exist in the index
3. The engine of the data table must be specified as InnoDB
4. The data types of foreign key fields and related fields must be consistent

(2) Create foreign key constraints when creating a data table

Create when creating a data table For foreign key constraints, you only need to use the foreign key keyword to specify the foreign key fields of this table after the create statement of the data table, use the reference keyword to specify the related fields of the related table, and clearly constrain the behavior.
An example of a SQL statement to create a foreign key constraint is as follows:

create table student (id int(8),name varchar(20),department varchar(20) ,index (id))ENGINE=InnoDB;
create table grade (Sid int(8),Cid int(10),score int,index(Sid),foreign key (Sid) references student(id) on  delete  restrict on update cascade)ENGINE=InnoDB;

In the above SQL statement, on delete restrict indicates that the foreign key will restrict the deletion operation when deleting, while on update cascade refers to the name The update operation will be synchronized when updating.

(3) Add foreign key constraints after creating the data table

Similarly, MySQL also supports adding foreign key constraints after creating the data table. In the above example, we first delete the grade table, and then create the grade table. We do not create foreign keys now. Try adding foreign keys after creating the grade table. The relevant SQL commands are as follows:

drop table grade;
create table grade(Sid int(8),Cid int(10),score int);
alter table grade add index(Sid);
alter table grade add foreign key (Sid) references student(id) on delete restrict on update cascade;

The execution results are as follows:

Summary of MySQL foreign key constraint knowledge points

3. Demonstration of foreign key constraint function

Next, let’s test the function of foreign key constraint. First, try to insert a non-existing key into the grade table. The student's grades were found to be rejected:

Summary of MySQL foreign key constraint knowledge points
Afterwards, I tried to delete the students whose grades existed in the student table and found to be rejected:

Summary of MySQL foreign key constraint knowledge points
Immediately afterwards , we tested the MySQL foreign key constraint cascade update function and found that if the data in the student table is changed, the grade table will also change, as shown below:

Summary of MySQL foreign key constraint knowledge points

Recommended learning: mysql video tutorial

The above is the detailed content of Summary of MySQL foreign key constraint knowledge points. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
MySQL: BLOB and other no-sql storage, what are the differences?MySQL: BLOB and other no-sql storage, what are the differences?May 13, 2025 am 12:14 AM

MySQL'sBLOBissuitableforstoringbinarydatawithinarelationaldatabase,whileNoSQLoptionslikeMongoDB,Redis,andCassandraofferflexible,scalablesolutionsforunstructureddata.BLOBissimplerbutcanslowdownperformancewithlargedata;NoSQLprovidesbetterscalabilityand

MySQL Add User: Syntax, Options, and Security Best PracticesMySQL Add User: Syntax, Options, and Security Best PracticesMay 13, 2025 am 12:12 AM

ToaddauserinMySQL,use:CREATEUSER'username'@'host'IDENTIFIEDBY'password';Here'showtodoitsecurely:1)Choosethehostcarefullytocontrolaccess.2)SetresourcelimitswithoptionslikeMAX_QUERIES_PER_HOUR.3)Usestrong,uniquepasswords.4)EnforceSSL/TLSconnectionswith

MySQL: How to avoid String Data Types common mistakes?MySQL: How to avoid String Data Types common mistakes?May 13, 2025 am 12:09 AM

ToavoidcommonmistakeswithstringdatatypesinMySQL,understandstringtypenuances,choosetherighttype,andmanageencodingandcollationsettingseffectively.1)UseCHARforfixed-lengthstrings,VARCHARforvariable-length,andTEXT/BLOBforlargerdata.2)Setcorrectcharacters

MySQL: String Data Types and ENUMs?MySQL: String Data Types and ENUMs?May 13, 2025 am 12:05 AM

MySQloffersechar, Varchar, text, Anddenumforstringdata.usecharforfixed-Lengthstrings, VarcharerForvariable-Length, text forlarger text, AndenumforenforcingdataAntegritywithaetofvalues.

MySQL BLOB: how to optimize BLOBs requestsMySQL BLOB: how to optimize BLOBs requestsMay 13, 2025 am 12:03 AM

Optimizing MySQLBLOB requests can be done through the following strategies: 1. Reduce the frequency of BLOB query, use independent requests or delay loading; 2. Select the appropriate BLOB type (such as TINYBLOB); 3. Separate the BLOB data into separate tables; 4. Compress the BLOB data at the application layer; 5. Index the BLOB metadata. These methods can effectively improve performance by combining monitoring, caching and data sharding in actual applications.

Adding Users to MySQL: The Complete TutorialAdding Users to MySQL: The Complete TutorialMay 12, 2025 am 12:14 AM

Mastering the method of adding MySQL users is crucial for database administrators and developers because it ensures the security and access control of the database. 1) Create a new user using the CREATEUSER command, 2) Assign permissions through the GRANT command, 3) Use FLUSHPRIVILEGES to ensure permissions take effect, 4) Regularly audit and clean user accounts to maintain performance and security.

Mastering MySQL String Data Types: VARCHAR vs. TEXT vs. CHARMastering MySQL String Data Types: VARCHAR vs. TEXT vs. CHARMay 12, 2025 am 12:12 AM

ChooseCHARforfixed-lengthdata,VARCHARforvariable-lengthdata,andTEXTforlargetextfields.1)CHARisefficientforconsistent-lengthdatalikecodes.2)VARCHARsuitsvariable-lengthdatalikenames,balancingflexibilityandperformance.3)TEXTisidealforlargetextslikeartic

MySQL: String Data Types and Indexing: Best PracticesMySQL: String Data Types and Indexing: Best PracticesMay 12, 2025 am 12:11 AM

Best practices for handling string data types and indexes in MySQL include: 1) Selecting the appropriate string type, such as CHAR for fixed length, VARCHAR for variable length, and TEXT for large text; 2) Be cautious in indexing, avoid over-indexing, and create indexes for common queries; 3) Use prefix indexes and full-text indexes to optimize long string searches; 4) Regularly monitor and optimize indexes to keep indexes small and efficient. Through these methods, we can balance read and write performance and improve database efficiency.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor