欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mybatis 中 Oracle 的拼接模糊查询及用法详解

程序员文章站 2024-02-23 22:09:04
一、结论 这里先给大家看一下结论 oracle 中,拼接模糊查询的正确写法 select a.user_id, a.user_name...

一、结论

这里先给大家看一下结论

oracle 中,拼接模糊查询的正确写法

 select a.user_id,
      a.user_name
    from user a
      and a.user_name like concat(concat('%','w'),'%')
      或者
      and a.user_name like '%' || 'w' || '%'

mybatis 中,拼接模糊查询的正确写法

 <select id="selectbyname" resultmap="baseresultmap">
    select a.user_id,
      a.user_name
    from t_base_user_info a
      <if test="username != null">
        and a.user_name like '%' || #{username} || '%'
      </if>
      或者
      <if test="username != null">
        and a.user_name like concat(concat('%','${username}'),'%')
      </if>
  </select>

注意 mybatis 中,拼接模糊查询的用法

,是将传入的值当做字符串的形式。所以拼接的时候 #{username} 默认自带引号。例如: ${username} 直接转为 ‘zhen'。

,是将传入的数据直接显示生成sql语句。所以拼接的时候
,是将传入的数据直接显示生成sql语句。所以拼接的时候
{username} 没有默认引号。例如:${username} 直接转为 zhen 。

二、技巧:

刚开始写的时候一直报错,报错信息是这样的:

    "message": "request processing failed; nested exception is org.mybatis.spring.mybatissystemexception: nested exception is org.apache.ibatis.type.typeexception: could not set parameters for mapping: parametermapping{property='username', mode=in, javatype=class java.lang.string, jdbctype=null, numericscale=null, resultmapid='null', jdbctypename='null', expression='null'}. cause: org.apache.ibatis.type.typeexception: error setting non null for parameter #1 with jdbctype null . try setting a different jdbctype for this parameter or a different configuration property. cause: java.sql.sqlexception: 无效的列索引",

我的写法是这样的:           

 <if test="_parameter != null">
--         and a.user_name like concat('%','#{username}','%')
          and a.user_name = #{username}
        </if>
<!--        <if test="usertype != null">
          and a.user_type = #{usertype}
        </if>
        <if test="mobilephoneno != null">
          and a.mobile_phone_no like concat('%','#{mobilephoneno}','%')
        </if>
        <if test="roleid != null">
          and b.role_id = #{roleid}
                </if>-->

后来我彻底凌乱了,于是就从头开始写,结果就好了。

小结:

出现的报错可能跟我之前写了太多的if 判断语句有关,于是先写一个简单的          

 <if test="username != null">
        and a.user_name like '%' || #{username} || '%'
      </if>

这个可以执行,其他再有什么条件加进来,稍微修改之后,都可以正常运行。          

 <if test="username != null">
        and a.user_name like concat(concat('%','${username}'),'%')
      </if>
      <if test="usertype != null">
        and a.user_type = #{usertype}
      </if>
      <if test="mobilephoneno != null">
        and a.mobile_phone_no like '%' || #{mobilephoneno} || '%'
      </if>
      <if test="baseroleinfo.roleid != null">
        and b.role_id = #{baseroleinfo.roleid}
      </if>

总结

以上所述是小编给大家介绍的mybatis 中 oracle 的拼接模糊查询,希望对大家有所帮助