关于人员1和人员2的结合查询功能。

4 篇文章 0 订阅

            写代码的时候,在查询单人聊天时,可能会涉及到人员1和人员2的结合(且)查询功能。


   其中的人员1既可能是发送方,也可能是接受方,同理,人员2也既可能是接受方,也可能是发送方。

逻辑其实可以归为以下几点:

① 人员1不为空  并且  人员2为空

<if test="(user !=null and user !='') and (user2==null or user2=='')">
            and
            (
                t.msgfrom= #{user,jdbcType=VARCHAR} or t2.name = #{user,jdbcType=VARCHAR}
                or
                t.msgto= #{user,jdbcType=VARCHAR} or t3.name = #{user,jdbcType=VARCHAR}
            )
        </if>

②人员2不为空  并且  人员1为空

<if test="(user2!=null and user2!='') and (user ==null or user =='')">
            and
            (
                t.msgfrom= #{user2,jdbcType=VARCHAR} or t2.name = #{user2,jdbcType=VARCHAR}
                or
                t.msgto= #{user2,jdbcType=VARCHAR} or t3.name = #{user2,jdbcType=VARCHAR}
            )
        </if>

③人员1和人员2都不为空

<if test="(user !=null and user !='') and (user2!=null and user2!='')">
            and
            (
                (
                    (t.msgfrom= #{user,jdbcType=VARCHAR} or t2.name = #{user,jdbcType=VARCHAR})
                    and
                    (t.msgto= #{user2,jdbcType=VARCHAR} or t3.name = #{user2,jdbcType=VARCHAR})
                )
                or
                (
                    (t.msgfrom= #{user2,jdbcType=VARCHAR} or t2.name = #{user2,jdbcType=VARCHAR})
                    and
                    (t.msgto= #{user,jdbcType=VARCHAR} or t3.name = #{user,jdbcType=VARCHAR})
                )
            )
 </if>

④人员1和人员2都为空  (这种相当于查询全部)。



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值