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 xml 檔案中like模糊查詢MyBatisXML
- mybatis 對特殊字元的模糊查詢MyBatis字元
- oracle 精確查詢和模糊查詢Oracle
- mybatis-模糊查詢like CONCATMyBatis
- Mybatis模糊查詢結果為空MyBatis
- python 當中的模糊查詢Python
- elasticsearch的模糊查詢Elasticsearch
- mysql 模糊查詢MySql
- mysql查詢結果多列拼接查詢MySql
- pgsql查詢優化之模糊查詢SQL優化
- Mybatis之map操作使用者和模糊查詢擴充套件MyBatis套件
- Java ——MongDB 插入資料、 模糊查詢、in查詢Java
- Mybatis查詢MyBatis
- sql 模糊查詢問題SQL
- mybatis like 查詢的例子MyBatis
- 加密的手機號,如何模糊查詢?加密
- Python中使用MySQL模糊查詢的方法PythonMySql
- [20190524]淺談模糊查詢.txt
- IndexPatternService 模糊查詢索引 fuzzyQuery分析Index索引
- [Uniapp] uni-combox模糊查詢APP
- int 被當作模糊查詢
- PostgreSQL DBA(192) - 整行模糊查詢SQL
- 15、Oracle中的高階子查詢Oracle
- mysql like查詢 - 根據多個條件的模糊匹配查詢MySql
- mybatis入門程式:mybatis根據使用者名稱稱模糊查詢使用者資訊MyBatis
- Oracle 查詢Oracle
- SQL-基礎語法 - 條件查詢 - 模糊查詢SQL
- 二、mybatis查詢分析MyBatis
- Mybatis延遲查詢MyBatis
- MyBatis帶參查詢MyBatis
- Mybatis簡單查詢MyBatis
- UILabel模糊查詢符合的字串並且高亮UI字串
- Oracle資料庫中的分頁查詢Oracle資料庫
- 報表怎麼做模糊查詢
- Peewee Sqlite3 中文模糊查詢SQLite
- 【PostgreSQL】 字首模糊查詢級優化SQL優化