机智的爆爆哥 2020-03-30 05:27 采纳率: 33.3%
浏览 222
已采纳

想要多个条件来查询对应的记录 起始时间 结束时间 用户名 状态

 SELECT
            u.id,u.username,u.password,u.phone,u.state,u.regdate,
            r.id rid,r.rolename,r.code
        FROM
            USER u,role r,user_role ur
        WHERE
            ur.uid=u.id
        AND
            ur.rid=r.id
        AND
         1=1
        and(username like #{info} or phone like #{info})
        or
            state=#{state}
        or
            regdate
        BETWEEN
            #{startdate}
        AND
            #{enddate}

发现出了问题 用的是mybatis 主要是连接时or和and该怎么用不是很清楚
且当某项为空时 就忽略

SELECT
        u.id,u.username,u.password,u.phone,u.state,u.regdate,
        r.id rid,r.rolename,r.code
        FROM
        USER u,role r,user_role ur
        <where>
            ur.uid=u.id
            AND
            ur.rid=r.id
            AND
            1=1
            <if test="info!=null and info !=&quot;&quot;">
                and (
                username like #{info}
                or phone like #{info}
                )
            </if>
            <if test="state!=null and state !=&quot;&quot;">
                and state=#{state}
            </if>
            <if test="startdate!=null and startdate !=&quot;&quot;">
                and regdate>=#{startdate}
            </if>
            <if test="enddate!=null and enddate !=&quot;&quot;">
                and #{enddate}>regdate
            </if>

        </where>

补充了 看下

已经解决啦 现把没问题的代码放上 有需要可以参考下

<select id="getPageInfo" resultMap="userRoleMap">
        SELECT
        u.id,u.username,u.password,u.phone,u.state,u.regdate,
        r.id,r.rolename,r.code
        FROM
        USER u,role r,user_role ur
        <where>
            ur.uid=u.id
            AND
            ur.rid=r.id
            and
            1=1
            <if test="info!='%%'">
                and (
                u.username like #{info}
                or u.phone like #{info}
                )
            </if>

            <if test="state!=null and state!=&quot;&quot;">
                and u.state=#{state}
            </if>
            <if test="startdate!=null and startdate !=&quot;&quot;">
                and u.regdate &gt;=#{startdate}
            </if>
            <if test="enddate!=null and enddate !=&quot;&quot;">
                and #{enddate} &gt;u.regdate
            </if>

        </where>
    </select>
    <resultMap id="userRoleMap" type="cn.bb.bbtravel.model.User">
        <id column="id" property="id"></id>
        <result column="username" property="username"></result>
        <result column="password" property="password"></result>
        <result column="phone" property="phone"></result>
        <result column="state" property="state"></result>
        <result column="regdate" property="regdate"></result>
        <collection property="roles" ofType="cn.bb.bbtravel.model.Role">
            <id column="rid" property="id"></id>
            <result column="rolename" property="rolename"></result>
            <result column="code" property="code"></result>
        </collection>
    </resultMap>

展开全部

  • 写回答

2条回答 默认 最新

  • 小鑫lay 2020-03-30 05:35
    关注

    and是与运算,or是或运算,or的运算级最低,判空的话可以用

    <if test="state != null and state != ''" >
                        and state =#{state}
    </if>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 点云密度大则包围盒小
  • ¥15 nginx使用nfs进行服务器的数据共享
  • ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
  • ¥15 51嵌入式入门按键小项目
  • ¥30 海外项目,如何降低Google Map接口费用?
  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
  • ¥15 盘古气象大模型调用(python)
  • ¥15 传人记程序做的plc 485从机程序该如何写
  • ¥15 已知手指抓握过程中掌指关节、手指各关节和指尖每一帧的坐标,用贝塞尔曲线可以拟合手指抓握的运动轨迹吗?
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部