Eu usei uma consulta muito semelhante à de Angelin. Caso você tenha mais do que algumas tabelas, deve-se aumentar o comprimento máximo de
group_concat
. Caso contrário, a consulta será interrompida na string truncada que group_concat
retorna. Estes são meus 10 centavos:
-- Increase memory to avoid truncating string, adjust according to your needs
SET group_concat_max_len = 1024 * 1024 * 10;
-- Generate drop command and assign to variable
SELECT CONCAT('DROP TABLE ',GROUP_CONCAT(CONCAT(table_schema,'.',table_name)),';') INTO @dropcmd FROM information_schema.tables WHERE table_schema='databasename' AND table_name LIKE 'my_table%';
-- Drop tables
PREPARE str FROM @dropcmd; EXECUTE str; DEALLOCATE PREPARE str;