mysql批量Drop表

1刪除語句數據庫

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

相關文章
相關標籤/搜索