Created
August 7, 2013 01:31
-
-
Save yingrong/6170450 to your computer and use it in GitHub Desktop.
mysql中操作information_schema.tables ;LIKE 'XXX_%' ;CONCAT
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
| Select CONCAT( 'drop table ', table_name, ';' ) FROM information_schema.tables Where table_name LIKE 'XXX_%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment