-
-
Save manelet/fcf00cb7c10ccc7b355ee9750c4b4dd4 to your computer and use it in GitHub Desktop.
MySQL - Truncate table foreign key
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET foreign_key_checks = 0; | |
TRUNCATE TABLE seo; | |
SET foreign_key_checks = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment