> 数据库 > MySQL >

mysql批量删除表,相同前缀的表

Select CONCAT( 'drop table ', table_name, ';' ) from information_schema.tables where table_name like '表前缀%' and table_schema = '表名'  
 
查询出来的结果,复制到查询器里批量执行一下就行了
(责任编辑:IT)