mybatis中批量删除表格

批量drop表格spa

<update id="dropTable"> 
       DROP TABLE IF EXISTS
       <foreach collection="tableNameList" item="item" index="index" separator=",">
          `${item}` 
       </foreach>                      
    </update> 
相关文章
相关标签/搜索