Mybatis 中 Oracle 的拼接模糊查询及用法详解
一、结论
这里先给大家看一下结论
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 的拼接模糊查询,希望对大家有所帮助
上一篇: 使用递归实现数组求和示例分享
下一篇: java实现阿拉伯数字转汉字数字
推荐阅读
-
Mybatis 中 Oracle 的拼接模糊查询及用法详解
-
Mybatis的mapper文件中$和#的用法及区别详解
-
Mybatis的mapper文件中$和#的用法及区别详解
-
讲解Oracle数据库中的数据字典及相关SQL查询用法
-
oracle模糊查询中的like和regexp_like用法介绍
-
Yii2中hasOne、hasMany及多对多关联查询的用法详解
-
Yii中的relations数据关联查询及统计功能用法详解
-
讲解Oracle数据库中的数据字典及相关SQL查询用法
-
Yii2中hasOne、hasMany及多对多关联查询的用法详解
-
Yii中的relations数据关联查询及统计功能用法详解