Introduction to MySQL method of deleting table data with foreign key constraints

Introduction to MySQL method of deleting table data with foreign key constraints

When deleting a table or a piece of data in MySQL,

[Err] 1451 -Cannot delete or update a parent row:
 aforeignkeyconstraintfails(...)

This is because a foreign key association is set in MySQL, which makes it impossible to update or delete data. This can be avoided by setting the FOREIGN_KEY_CHECKS variable.

To disable foreign key constraints, we can use:

SETFOREIGN_KEY_CHECKS=0;

Then delete the data

To enable foreign key constraints, we can use:

SETFOREIGN_KEY_CHECKS=1;

To view the current value of FOREIGN_KEY_CHECKS, use the following command:

SELECT @@FOREIGN_KEY_CHECKS;

Summarize

The above is all the content of this article about how to delete table data with foreign key constraints in MySQL. I hope it will be helpful to everyone. Interested friends can refer to: How to delete table data in MySQL, Analysis of MySQL variable declaration and stored procedure, Several important MySQL variables, Detailed explanation of MySQL prepare principle, etc. If you have any questions, please leave a message at any time and the editor will reply to you in time.

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
  • 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

<<:  A Preliminary Study on Vue Unit Testing

>>:  How to increase your web performance by 3 times by turning on a parameter in Nginx

Recommend

Oracle deployment tutorial in Linux environment

1. Environment and related software Virtual Machi...

jQuery achieves full screen scrolling effect

This article example shares the specific code of ...

Understanding flex-grow, flex-shrink, flex-basis and nine-grid layout

1. flex-grow, flex-shrink, flex-basis properties ...

Introduction to Vue life cycle and detailed explanation of hook functions

Table of contents Vue life cycle introduction and...

What is this in JavaScript point by point series

Understand this Perhaps you have seen this in oth...

MySQL 5.7.17 winx64 installation and configuration graphic tutorial

I summarized the previous notes on installing MyS...

Detailed explanation of CSS counter related attributes learning

The CSS counter attribute is supported by almost ...

How to modify server uuid in Mysql

Source of the problem: If the slave server is the...

Zabbix configures DingTalk's alarm function with pictures

Implementation ideas: First of all, the alarm inf...

How to mark the source and origin of CSS3 citations

I am almost going moldy staying at home due to th...

How to reset the root password of Mysql in Windows if you forget it

My machine environment: Windows 2008 R2 MySQL 5.6...

Which loop is the fastest in JavaScript?

Knowing which for loop or iterator is right for o...

Optimized implementation of count() for large MySQL tables

The following is my judgment based on the data st...

Analysis of the reasons why MySQL field definitions should not use null

Why is NULL so often used? (1) Java's null Nu...