mysql批量删除表,沟通前缀的表

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

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

转载注明出处:https://www.heiqu.com/8335.html