Last active
August 29, 2015 14:06
-
-
Save hanvari/16c6cad5a8bd03c595b0 to your computer and use it in GitHub Desktop.
MySQL Disable foreign-key checks to truncate a table
This file contains hidden or 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 schema.table ; | |
SET FOREIGN_KEY_CHECKS=1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment