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
| /* | |
| * MySQL - Drop Tables WHERE tablename like(); | |
| */ | |
| SET @tables = NULL; | |
| SELECT GROUP_CONCAT(table_schema, '.', table_name) INTO @tables FROM information_schema.tables | |
| WHERE table_schema = 'db_1' AND | |
| ( | |
| table_name LIKE BINARY 'wp_bp_%' |
NewerOlder