批量删除特定前缀的表
第一步:拼装sql语句
Select CONCAT( 'drop table ', table_name, ';' ) FROM information_schema.tables Where table_name LIKE 'CA_%';Select CONCAT( 'drop
批量删除特定前缀的表
第一步:拼装sql语句
Select CONCAT( 'drop table ', table_name, ';' ) FROM information_schema.tables Where table_name LIKE 'CA_%';Select CONCAT( 'drop