How to disable foreign key constraint checking in MySQL child tables

How to disable foreign key constraint checking in MySQL child tables

Prepare:

Define a teacher table and a student table; reference the teacher table ID in the student table

create table teachers(teacherID int not null auto_increment primary key,teacherName varchar(8));

create table students(studentID int not null auto_increment primary key,teacherID int not null,studentName varchar(8),

constraint fk_students_teacherID foreign key (teacherId) references teachers(teacherId) on delete no action on update cascade);

first step:

Insert a teacher

insert into teachers(teacherName) values('NameA');

Insert a student:

insert into students(studentName,teacherID) values('NameB',100);--You can know that there is no such teacher ID, so the insertion will fail.

But is there any way to insert an unreasonable piece of data? There is still a way

Step 2:

set foreign_key_checks = 0; and that's it.

insert into students(studentName,teacherID) values('NameB',100);

Step 3:

Set back to default value, keep foreign key constraint checking.

set foreign_key_checks = 1;

Summarize:

This essay is very messy. The main point I want to make is that foreign key constraints are useless when set foreign_key_checks = 0;. At this time, you can insert into the child table that violates the foreign key constraint.

Don't use this unless absolutely necessary.

The above article about MySQL foreign key constraint checking method for closing child tables is all I want to share with you. I hope it can give you a reference. I also hope that you will support 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
  • Detailed 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 create and delete foreign key constraints in MySQL

<<:  MySQL foreign key constraint disable and enable commands

>>:  Detailed introduction to nobody user and nologin in Unix/Linux system

Recommend

CSS3 uses var() and calc() functions to achieve animation effects

Preview knowledge points. Animation Frames Backgr...

Completely uninstall MySQL database in Windows system to reinstall MySQL

1. In the control panel, uninstall all components...

Tutorial on binary compilation and installation of MySql centos7 under Linux

// It took me a whole afternoon to install this, ...

How to implement nested if method in nginx

Nginx does not support nested if statements, nor ...

JavaScript determines whether the browser is IE

As a front-end developer, I can’t avoid IE’s pitf...

Tips for implementing list loop scrolling based on jQuery (super simple)

I saw a good idea and recorded it. I have used jQ...

Three ways to avoid duplicate insertion of data in MySql

Preface In the case of primary key conflict or un...

How to use VirtualBox to build a local virtual machine environment on Mac

1. Big Data and Hadoop To study and learn about b...

Summary of several replication methods for MySQL master-slave replication

Asynchronous replication MySQL replication is asy...

MySQL database migration quickly exports and imports large amounts of data

Database migration is a problem we often encounte...

20 JS abbreviation skills to improve work efficiency

Table of contents When declaring multiple variabl...

Web page layout should consider IE6 compatibility issues

The figure below shows the browser viewing rate i...

RHCE installs Apache and accesses IP with a browser

1. at is configured to write "This is a at t...

Ubuntu 20.04 sets a static IP address (including different versions)

Because Ubuntu 20.04 manages the network through ...

In-depth analysis of MySQL 8.0 redo log

Table of contents Preface Generation of redo log ...