概述
【记录一下,list情况】
<select id="getEmployeesListParams" resultType="Employees">
select *
from EMPLOYEES e
where e.EMPLOYEE_ID in
<foreach collection="employeeIds" item="employeeId" index="index"
open="(" close=")" separator=",">
#{employeeId}
</foreach>
</select>
集合循环查询结果,union all(着重separator属性)
<select id="getProductEnableNumberInfos" resultMap="productMap" >
SELECT * from (
<foreach collection="conditions.list" item="item" index="index" separator="union all">
SELECT XXX
</foreach>
) alias WHERE alias.WMST_ENABLED_NUMBER>0;
</select>
感谢:http://blog.csdn.net/small____fish/article/details/8029030/
最后
以上就是专注发箍为你收集整理的mybatis 查询参数为集合list、数组、map的情况的全部内容,希望文章能够帮你解决mybatis 查询参数为集合list、数组、map的情况所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复