怎么在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>
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。