Created
February 18, 2016 09:25
-
-
Save Veve2/119f486b4a81d190e1fa to your computer and use it in GitHub Desktop.
Effacer plusieurs tables MySQL ayant un même préfixe
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 up variable to delete ALL tables starting with 'temp_' | |
SET GROUP_CONCAT_MAX_LEN=10000; | |
SET @tbls = (SELECT GROUP_CONCAT(TABLE_NAME) | |
FROM information_schema.TABLES | |
WHERE TABLE_SCHEMA = 'my_database' | |
AND TABLE_NAME LIKE 'temp_%'); | |
SET @delStmt = CONCAT('DROP TABLE ', @tbls); | |
-- SELECT @delStmt; | |
PREPARE stmt FROM @delStmt; | |
EXECUTE stmt; | |
DEALLOCATE PREPARE stmt; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SET GROUP_CONCAT_MAX_LEN=10000;
SELECT concat("DROP TABLE ",GROUP_CONCAT(TABLE_NAME))
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = 'apctdmymsepem'
AND TABLE_NAME LIKE 'norma%';