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