Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说
mybatis批量删除foreach_oracle,希望能够帮助你!!!。
一直使用MybatisPlus,好久没写Mybatis 了,都差点忘了foreach 标签怎么使用了,备忘保存下,
下面是一个根据 id 的集合批量删除的方法。
Mapper 中的方法定义如下:
Integer batchDeleteByIds(@Param("userId")String userId,@Param("ids")List<String> ids);
xml 中的:
<delete id="batchDeleteByIds"> DELETE FROM article WHERE user_id = #{userId,jdbcType=VARCHAR} and id IN <foreach collection="ids" item="item" index="index" open="(" separator="," close=")"> #{item,jdbcType=VARCHAR} </foreach> </delete>
OK…
今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。
上一篇
已是最后文章
下一篇
已是最新文章