我是靠谱客的博主 震动小甜瓜,最近开发中收集的这篇文章主要介绍mybatis 中 使用 查询条件为数组 入参是集合查询方式 若是SQL脚本的话 条件=any(数组),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<if test="shopManageUserIds != null and shopManageUserIds.size > 0">
    AND rpd.manage_user_id @> ARRAY
    <foreach collection="shopManageUserIds" item="id" open="[" separator="," close="]">
        #{id}
    </foreach>::bigint[]
</if>
and lm."manageUserId" <![CDATA[&&]]>  ARRAY[
<foreach collection="creatorIds" item="item" separator=",">
  #{item}
</foreach>]::bigint[]

and (marketplace_id, seller_id, asin, to_char(rpt_date, 'yyyy-mm-dd')) in
    (
<foreach collection="inputs" item="input" separator=",">
    (#{input.marketplaceId}, #{input.sellerId}, #{input.asin}, #{input.rptDateText})
</foreach>
)

最后

以上就是震动小甜瓜为你收集整理的mybatis 中 使用 查询条件为数组 入参是集合查询方式 若是SQL脚本的话 条件=any(数组)的全部内容,希望文章能够帮你解决mybatis 中 使用 查询条件为数组 入参是集合查询方式 若是SQL脚本的话 条件=any(数组)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部