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