select concat('drop table ',table_name,';') from TABLES where table_schema='数据库名称';
select concat('truncate ',table_name,';') from TABLES where table_schema='数据库名称';
2022-12-15 08:08:40
select concat('drop table ',table_name,';') from TABLES where table_schema='数据库名称';
select concat('truncate ',table_name,';') from TABLES where table_schema='数据库名称';