我是靠谱客的博主 酷炫冥王星,最近开发中收集的这篇文章主要介绍mybaitis 的 mapper.xml 文件中 参数为List集合SQL 的写法。mybaitis 的 mapper.xml 文件中 参数为List集合SQL 的写法。,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
mybaitis 的 mapper.xml 文件中 参数为List集合SQL 的写法。
1、应用场景:
传参:
MaterialCodeList, activity_end_time,userCode
具体SQl:
<if test> 的验证: "MaterialCodeList != null and MaterialCodeList.size()>0"
<foreach > 循环: 循环体:item 序号:index 集合:collection 分割符:separator
<select id="selectPreDiscountInfoByErpCodeAndMaterialCode" resultMap="BaseResultMap">
SELECT ps.MATERIAL_CODE,ps.`NAME`,ps.DISCOUNT_AMOUNT from pre_discount_sku ps where ps.pre_discount_id in(
select pd.id from pre_discount pd where pd.discount_status = '1' and pd.user_code = #{userCode,jdbcType=VARCHAR} and to_days(pd.activity_end_time) >= to_days(now())
)
<if test="MaterialCodeList != null and MaterialCodeList.size()>0">
and ps.material_code in(
<foreach item="item" index="index" collection="MaterialCodeList" separator=",">
#{item}
</foreach>
)
</if>
</select>
最后
以上就是酷炫冥王星为你收集整理的mybaitis 的 mapper.xml 文件中 参数为List集合SQL 的写法。mybaitis 的 mapper.xml 文件中 参数为List集合SQL 的写法。的全部内容,希望文章能够帮你解决mybaitis 的 mapper.xml 文件中 参数为List集合SQL 的写法。mybaitis 的 mapper.xml 文件中 参数为List集合SQL 的写法。所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复