MySQL foreign key constraint disable and enable commands

MySQL foreign key constraint disable and enable commands

Disabling and enabling MySQL foreign key constraints:

Whether MySQL foreign key constraints are enabled is indicated by a global variable:

FOREIGN_KEY_CHECKS=0; Disabled

FOREIGN_KEY_CHECKS=1; Enabled

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

SELECT @@FOREIGN_KEY_CHECKS;

Disable foreign key constraints:

SET FOREIGN_KEY_CHECKS=0;

Enable foreign key constraints:

SET FOREIGN_KEY_CHECKS=1;

The above disabling and enabling commands of MySQL foreign key constraints are 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:
  • Example explanation of MySQL foreign key constraints
  • Detailed explanation of MySQL foreign key constraints
  • Examples of common operations on MySQL foreign key constraints [view, add, modify, delete]
  • 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 disable foreign key constraint checking in MySQL child tables
  • Detailed explanation of foreign key constraints in MySQL
  • Detailed explanation of creating a data table in MySQL and establishing primary and foreign key relationships
  • MySQL and Oracle data type correspondence (tabular form)
  • Summary of MySQL foreign key constraints and table relationships

<<:  Example steps for implementing class selectors and name attribute selectors in js

>>:  How to disable foreign key constraint checking in MySQL child tables

Recommend

Two ways to use react in React html

Basic Use <!DOCTYPE html> <html lang=&qu...

Introduction to new features of MySQL 8.0.11

MySQL 8.0 for Windows v8.0.11 official free versi...

Running PostgreSQL in Docker and recommending several connection tools

1 Introduction PostgreSQL is a free software obje...

Summary of commonly used SQL in MySQL operation tables

1. View the types of fields in the table describe...

Reduce memory and CPU usage by optimizing web pages

Some web pages may not look large but may be very ...

7 native JS error types you should know

Table of contents Overview 1. RangeError 2. Refer...

Drop-down menu and sliding menu design examples

I found a lot of websites that use drop-down or sl...

Use of MySQL truncate table statement

The Truncate table statement is used to delete/tr...

Implementation of MySQL multi-version concurrency control MVCC

Transaction isolation level settings set global t...

Detailed method of using goaccess to analyze nginx logs

Recently I want to use goaccess to analyze nginx ...

Introduction to using the MySQL mysqladmin client

Table of contents 1. Check the status of the serv...

Vue computed properties

Table of contents 1. Basic Examples 2. Computed p...

Summary of several MySQL installation methods and configuration issues

1. MySQL rpm package installation # Download the ...

Implementation of importing and exporting docker images

Docker usage of gitlab gitlab docker Startup Comm...