mysql 如何删除数据库中所有的表



SELECT concat('DROP TABLE IF EXISTS ', table_name, ';')
FROM information_schema.tables
WHERE table_schema = 'uat_reserve';