日期:2014-05-16  浏览次数:20324 次

批量删除相同前缀的表
删除所有PPR_前缀的表
SELECT   CONCAT( 'drop table ',table_name,'; ')   FROM   information_schema.tables where information_schema.tables.TABLE_NAME LIKE 'ppr_%' ;