du kan køre denne forespørgsel og få alle de sql-forespørgsler, du skal bruge for at køre;
select concat( 'drop table ', a.table_name, ';' )
from information_schema.tables a
where a.table_name like 'dynamic_%';
du kan indsætte det i fil som
INTO OUTFILE '/tmp/delete.sql';
opdater i henhold til alexandre kommentar
SET @v = ( select concat( 'drop table ', group_concat(a.table_name))
from information_schema.tables a
where a.table_name like 'dynamic_%'
AND a.table_schema = DATABASE()
;);
PREPARE s FROM @v;
EXECUTE s;