mysql批量删除表,相同前缀的表
时间:2015-01-02 15:29 来源:linux.it.net.cn 作者:IT
Select CONCAT( 'drop table ', table_name, ';' ) from information_schema.tables where table_name like '表前缀%' and table_schema = '表名'
查询出来的结果,复制到查询器里批量执行一下就行了
(责任编辑:IT)
Select CONCAT( 'drop table ', table_name, ';' ) from information_schema.tables where table_name like '表前缀%' and table_schema = '表名'
查询出来的结果,复制到查询器里批量执行一下就行了
(责任编辑:IT) |