mysql 批量删除表

Select CONCAT( 'drop table ', table_name, ';' )
FROM information_schema.tables
Where table_schema='jws-boot' and table_name LIKE 'pm%';

 

你可能感兴趣的:(mysql 批量删除表)