mysql批量删除前缀相同的表(原创) mysql批量删除前缀相同的表:
Select CONCAT( 'drop table ', table_name, ';' )FROM information_schema.tablesWhere table_name LIKE 'pre_%';