Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Hazem-Ben-Khalfallah/b0afb6e9b0361b48ef4738d810773753 to your computer and use it in GitHub Desktop.
Save Hazem-Ben-Khalfallah/b0afb6e9b0361b48ef4738d810773753 to your computer and use it in GitHub Desktop.
[Disable a foreign key constraint in MySQL] #sql #mysql
#disable
SET FOREIGN_KEY_CHECKS=0;
#reenable
SET FOREIGN_KEY_CHECKS=1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment