mybatis中sql语句Mapper.xml文件中如何写集合遍历循环插入foreach
·
List<类名> selectListResult(@Param(“参数”) List<类名> 参数);
<select id="方法名" resultMap="返回数据匹配类">
select * from table_name where 1=1 <!-- 使用1=1防止list为null时sql语句报错-->
<!-- 判断-->
<if test="list!= null">
and id in
<!-- for循环, item:循环后的值, index:循环下标列式for循环的 i ,collection:参数名-->
<!-- open="(" close=")" separator="," 就是把循环的值组成 (item1,item2,item3)的格式--> <foreach item="item" index="index" collection="list" open="(" close=")" separator=",">
#{item}
</foreach>
</if>
</select>
<foreach collection="yourListName" item="item" index="index" open="(" close=")" separator=",">
#{item}
</foreach>
collection:要做foreach的对象,作为入参时,List<?>对象默认用list代替作为键,数组对象有array代替作为键,Map对象用map代替作为键,该参数必选;
item:循环体中的具体对象,支持属性的点路径访问,该参数必选;
index:在list和数组中,index是元素的序号,在map中,index是元素的key,该参数可选;
open:foreach代码的开始符号,一般是(和close=")"合用,该参数可选;
close:foreach代码的关闭符号,一般是)和open="("合用,该参数可选;
separator:元素之间的分隔符,例如在in()的时候,separator=","会自动在元素中间用“,“隔开,避免手动输入逗号导致sql错误,该参数可选;
mapper中对order by 进行排序
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐


所有评论(0)