Skip to content

Instantly share code, notes, and snippets.

@Veve2
Created February 18, 2016 09:25
Show Gist options
  • Save Veve2/119f486b4a81d190e1fa to your computer and use it in GitHub Desktop.
Save Veve2/119f486b4a81d190e1fa to your computer and use it in GitHub Desktop.
Effacer plusieurs tables MySQL ayant un même préfixe
-- 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;
@Veve2
Copy link
Author

Veve2 commented Feb 18, 2016

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%';

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment