批量drop表格
<update id="dropTable"> DROP TABLE IF EXISTS <foreach collection="tableNameList" item="item" index="index" separator=","> `${item}` </foreach> </update>