1
SELECT CONCAT( 'drop table ', table_name, ';' ) FROM information_schema.tablesWHERE table_name LIKE 'tb_task_data_%';
这样得到删除表的sql语句
得到sql后执行即可