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:
|
<<: A Preliminary Study on Vue Unit Testing
>>: How to increase your web performance by 3 times by turning on a parameter in Nginx
1. Environment and related software Virtual Machi...
This article example shares the specific code of ...
1. flex-grow, flex-shrink, flex-basis properties ...
Table of contents Vue life cycle introduction and...
Understand this Perhaps you have seen this in oth...
I summarized the previous notes on installing MyS...
1. The mysqldump backup method uses logical backu...
The CSS counter attribute is supported by almost ...
Source of the problem: If the slave server is the...
Implementation ideas: First of all, the alarm inf...
I am almost going moldy staying at home due to th...
My machine environment: Windows 2008 R2 MySQL 5.6...
Knowing which for loop or iterator is right for o...
The following is my judgment based on the data st...
Why is NULL so often used? (1) Java's null Nu...