Created
March 15, 2012 15:43
-
-
Save cboden/2044871 to your computer and use it in GitHub Desktop.
Truncate Foreign Key'd Tables
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 `table1`; | |
TRUNCATE TABLE `table2`; | |
SET FOREIGN_KEY_CHECKS = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment