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

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

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/c4f1822bbe1c090454d20a38991fc9ec.html