1 SELECT concat('DROP TABLE IF EXISTS ', table_name, ';') 2 FROM information_schema.tables 3 WHERE table_schema = 'test_db';
step1:select出所有要删除表的删除语句,其中 test_db 是数据库下的模式名称, step2:执行step1输出的SQL语句即可