mysql生成批量语句

今天遇到监控系统的表格太多的问题, 为了节约时间, 在网上找到了生成批量删除表的语句:

1
2
3
SELECT CONCAT( 'drop table ', table_name, ';' )
FROM information_schema.tables
WHERE table_name LIKE 'pre_%';

这样可以批量生成drop 语句, 使用navicat执行即可.

补充:

十分钟了结MySQL information_schema

https://www.cnblogs.com/shengdimaya/p/6920677.html