删除表可以直接使用drop table 表名,也可以先判断表是否存在再进行删除。
drop table if exists exam_record_2011;
drop table if exists exam_record_2012;
drop table if exists exam_record_2013;
drop table if exists exam_record_2014;
drop table if exists exam_record_2011,exam_record_2012,exam_record_2013,exam_record_2014;