mysql批量Drop表

1删除语句数据库

Select CONCAT( 'drop table ', table_name, ';' ) 
FROM information_schema.tables 
Where table_schema='数据库名' and  table_name LIKE '模糊表名%';code

相关文章
相关标签/搜索