bạn có thể chạy truy vấn này và nhận tất cả các truy vấn sql mà bạn cần chạy;
select concat( 'drop table ', a.table_name, ';' )
from information_schema.tables a
where a.table_name like 'dynamic_%';
bạn có thể chèn nó vào tệp như
INTO OUTFILE '/tmp/delete.sql';
cập nhật theo nhận xét của alexandre
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;