mybatis中批量刪除表格

批量drop表格spa

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