项目场景:mybatis中的mapper.xml中如何使用in方法
提示:mapper.xml中如何使用in方法一般都是like或=
解决方案:见SQL
提示:使用foreach
<if test="List != null and List.size()!=0 ">
and list in
<foreach collection="List" item="item" index="index" open="(" close=")" separator=",">
#{item}
</foreach>
</if>
注意,传入的参数是List ,如果传入的是array 则需要修改 collection部分定义为 collection=“array”文章来源:https://www.toymoban.com/news/detail-609941.html
在MyBatis中使用in关键字参数为集合时,需要使用到foreach标签。
下面详细介绍以下foreach标签的几个参数
文章来源地址https://www.toymoban.com/news/detail-609941.html
到了这里,关于mybatis中的mapper.xml中如何使用in方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!