Mybatis中Oracle的拼接模糊查詢
一、結論
這裡先給大家看一下結論
Oracle 中,拼接模糊查詢的正確寫法
SELECT A.USER_ID,
A.USER_NAME
FROM T_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_USER 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語句。所以拼接的時候 ${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="userName != 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="bookId != null">
AND B.BOOK_ID = #{bookId}
</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="bookInfo.bookId != null">
AND B.BOOK_ID = #{bookInfo.bookId}
</if>
相關文章
- MyBatis模糊查詢LIKEMyBatis
- mybatis - [07] 模糊查詢MyBatis
- Mybatis中模糊查詢的各種寫法MyBatis
- mybatis xml 檔案中like模糊查詢MyBatisXML
- mybatis做like模糊查詢MyBatis
- Mybatis各種模糊查詢MyBatis
- mybatis 對特殊字元的模糊查詢MyBatis字元
- mybatis-模糊查詢like CONCATMyBatis
- Mybatis模糊查詢結果為空MyBatis
- oracle 精確查詢和模糊查詢Oracle
- LINQ中的模糊查詢
- mybatis多條件的模糊查詢解決方案MyBatis
- Oracle特殊符號的模糊查詢Oracle符號
- python 當中的模糊查詢Python
- elasticsearch的模糊查詢Elasticsearch
- mysql 模糊查詢MySql
- mysql查詢結果多列拼接查詢MySql
- pgsql查詢優化之模糊查詢SQL優化
- sql日期模糊查詢SQL
- Mybatis之map操作使用者和模糊查詢擴充套件MyBatis套件
- mybatis利用example檔案進行異表欄位模糊查詢MyBatis
- Mysql高效的模糊查詢(轉)MySql
- Mybatis查詢MyBatis
- Java ——MongDB 插入資料、 模糊查詢、in查詢Java
- sql 模糊查詢問題SQL
- 反向索引與模糊查詢索引
- mybatis入門程式:mybatis根據使用者名稱稱模糊查詢使用者資訊MyBatis
- mybatis查詢列表MyBatis
- mybatis like 查詢的例子MyBatis
- 0227windows下模糊查詢oracle事件的指令碼WindowsOracle事件指令碼
- int 被當作模糊查詢
- IndexPatternService 模糊查詢索引 fuzzyQuery分析Index索引
- 加密的手機號,如何模糊查詢?加密
- SQL使用模糊查詢like的優化SQL優化
- mysql like查詢 - 根據多個條件的模糊匹配查詢MySql
- Mybatis簡單查詢MyBatis
- 二、mybatis查詢分析MyBatis
- MyBatis帶參查詢MyBatis