select concat('drop table ',table_name,';') from information_schema.TABLES where table_schema='test';
其中 test 是数据库,
执行输出的SQL语句即可
select concat('drop table ',table_name,';') from information_schema.TABLES where table_schema='test';
其中 test 是数据库,
执行输出的SQL语句即可