Simple implementation of ignoring foreign key constraints when deleting MySQL tables

Simple implementation of ignoring foreign key constraints when deleting MySQL tables

Deleting a table is not very common, especially for tables with foreign key associations, you need to be more careful when deleting. However, during the development process, it is common to find problems with the schema design and to delete all tables in the existing database and recreate them. In addition, during testing, it is also necessary to recreate all tables in the database. Of course, many automated tools can also do this.

When deleting a table, you may encounter an error message like this:

ERROR 1217 (23000): Cannot delete or update a parent row: a foreign key constraint fails

This is because the fields in the table you are trying to delete are used as foreign keys in other tables, so you must delete the table with the foreign key (child table) before deleting this table (parent table). That is to say, the process of deleting a table needs to be consistent with the process of creating a table.

But this is often unacceptable. On the one hand, if there are too many tables, manual sorting is a bit unacceptable; on the other hand, there is currently no automatic tool to sort them (in fact, it is not impossible to achieve). Therefore, MySQL provides a variable FOREIGN_KEY_CHECKS to set whether to check foreign key constraints when necessary.

It is generally recommended to do this:

First, automatically generate all the DROP statements and replace MyDatabaseName with your database name:

SELECT concat('DROP TABLE IF EXISTS ', table_name, ';')
FROM information_schema.tables
WHERE table_schema = 'MyDatabaseName';

Then, add the following statements to set the FOREIGN_KEY_CHECKS variable before and after the generated code:

SET FOREIGN_KEY_CHECKS = 0
-- DROP statement SET FOREIGN_KEY_CHECKS = 1;

However, if you forget the last sentence, it doesn’t matter much. This variable is based on the Session, that is, when you close the client and reconnect, this variable will return to the default value. If you need to not check foreign key constraints globally (this situation is relatively rare), you can do this:

SET GLOBAL FOREIGN_KEY_CHECKS = 0;

or

set @@global.FOREIGN_KEY_CHECKS = 0;

The above simple implementation of ignoring foreign key constraints when deleting MySQL tables is all the content that the editor shares 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
  • How to disable foreign key constraint checking in MySQL child tables
  • How to create and delete foreign key constraints in MySQL

<<:  Specific use of exception filter Exceptionfilter in nestjs

>>:  Super detailed steps to install zabbix3.0 on centos7

Recommend

Vue implements drag progress bar

This article example shares the specific code of ...

Interpreting MySQL client and server protocols

Table of contents MySQL Client/Server Protocol If...

Web Design Tutorial (2): On Imitation and Plagiarism

<br />In the previous article, I introduced ...

MySQL Community Server 5.7.19 Installation Guide (Detailed)

MySQL official website zip file download link htt...

Detailed explanation of MYSQL stored procedure comments

Table of contents 1. Instructions for use 2. Prep...

JS implements Baidu search box

This article example shares the specific code of ...

HTML 5 Preview

<br />Original: http://www.alistapart.com/ar...

How to enable remote access in Docker

Docker daemon socket The Docker daemon can listen...

Detailed explanation of MySQL three-value logic and NULL

Table of contents What is NULL Two kinds of NULL ...

Detailed explanation of MySQL backup and recovery practice of mysqlbackup

1. Introduction to mysqlbackup mysqlbackup is the...

A brief introduction to the simple use of CentOS7 firewall and open ports

Overview (official has more detailed description)...

Detailed explanation of how to use Tomcat Native to improve Tomcat IO efficiency

Table of contents Introduction How to connect to ...

How to embed flash video format (flv, swf) files in html files

Flash file formats: .FLV and .SWF There are two ex...

The top fixed div can be set to a semi-transparent effect

Copy code The code is as follows: <!DOCTYPE ht...