<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
在上篇文章,我們系統地學習了where 1=1
相關的知識點,大家可以回看《MySQL中where 1=1方法的使用及改進》這篇文章。文章中涉及到了Mybatis的替代方案,有好學的朋友在評論區有朋友問了基於Mybatis寫法的問題。
本篇文章會將Mybatis中where標籤的基本使用形式、小技巧以及容易踩到的坑進行總結梳理,方便大家更好地實踐運用d
在不使用Mybatis的where標籤時,我們通常是根據查詢條件進行手動拼接,也就是用到了上面提到的where 1=1
的方式,範例如下:
<select id="selectSelective" resultType="com.secbro.entity.User"> select * from t_user where 1=1 <if test="username != null and username != ''"> and username = #{username} </if> <if test="idNo != null and idNo != ''"> and id_no = #{idNo} </if> </select>
這種方式主要就是為了避免語句拼接錯誤,出現類似如下的錯誤SQL:
select * from t_user where and username = 'Tom' and id = '1001'; select * from t_user where and id = '1001';
當新增上1=1時,SQL語句便是正確的了:
select * from t_user where 1=1 and username = 'Tom' and id = '1001'; select * from t_user where 1=1 and id = '1001';
這個我們之前已經提到過,多少對MySQL資料庫的有一定的壓力。因為1=1條件的優化過濾是需要MySQL做的。如果能夠將這部分放到應用程式來做,就減少了MySQL的壓力。畢竟,應用程式是可以輕易地橫向擴充套件的。
為了能達到MySQL效能的調優,我們可以基於Mybatis的where
標籤來進行實現。where
標籤是頂層的遍歷標籤,需要配合if
標籤使用,單獨使用無意義。通常有下面兩種實現形式。
方式一:
<select id="selectSelective" resultType="com.secbro.entity.User"> select * from t_user <where> <if test="username != null and username != ''"> username = #{username} </if> <if test="idNo != null and idNo != ''"> and id_no = #{idNo} </if> </where> </select>
方式二:
<select id="selectSelective" resultType="com.secbro.entity.User"> select * from t_user <where> <if test="username != null and username != ''"> and username = #{username} </if> <if test="idNo != null and idNo != ''"> and id_no = #{idNo} </if> </where> </select>
仔細觀察會發現,這兩種方式的區別在於第一if條件中的SQL語句是否有and
。
這裡就涉及到where標籤的兩個特性:
where
子句;AND
” 或 “OR
”,where
標籤會將它替換去除;所以說,上面的兩種寫法都是可以了,Mybatis的where
標籤會替我們做一些事情。
但需要注意的是:where
標籤只會 智慧的去除(忽略)首個滿足條件語句的字首。所以建議在使用where
標籤時,每個語句都最好寫上 and 字首或者 or 字首,否則像以下寫法就會出現問題:
<select id="selectSelective" resultType="com.secbro.entity.User"> select * from t_user <where> <if test="username != null and username != ''"> username = #{username} </if> <if test="idNo != null and idNo != ''"> id_no = #{idNo} </if> </where> </select>
生成的SQL語句如下:
select * from t_user WHERE username = ? id_no = ?
很顯然,語法是錯誤的。
因此,在使用where
標籤時,建議將所有條件都新增上and或or;
上面使用where
標籤可以達到拼接條件語句時,自動去掉首個條件的and或or,那麼如果是其他自定義的關鍵字是否也能去掉呢?
此時,where
標籤就無能為力了,該trim
標籤上場了,它也可以實現where
標籤的功能。
<select id="selectSelective" resultType="com.secbro.entity.User"> select * from t_user <trim prefix="where" prefixOverrides="and | or "> <if test="username != null and username != ''"> and username = #{username} </if> <if test="idNo != null and idNo != ''"> and id_no = #{idNo} </if> </trim> </select>
將上面基於where
標籤的寫改寫為trim
標籤,發現執行效果完全一樣。而且trim
標籤具有了更加靈活的自定義性。
另外,在使用where語句或其他語句時一定要注意一個地方,那就是:註釋的使用。
先來看例子:
<select id="selectSelective" resultType="com.secbro.entity.User"> select * from t_user <where> <if test="username != null and username != ''"> and username = #{username} </if> <if test="idNo != null and idNo != ''"> /* and id_no = #{idNo}*/ and id_no = #{idNo} </if> </where> </select>
上述SQL語句中新增了 /**/
的註釋,生成的SQL語句為:
select * from t_user WHERE username = ? /* and id_no = ?*/ and id_no = ?
執行時,直接報錯。
還有一個範例:
<select id="selectSelective" resultType="com.secbro.entity.User"> select * from t_user <where> <if test="username != null and username != ''"> -- and username = #{username} and username = #{username} </if> <if test="idNo != null and idNo != ''"> and id_no = #{idNo} </if> </where> </select>
生成的SQL語句為:
select * from t_user WHERE -- and username = ? and username = ? and id_no = ?
同樣會導致報錯。
這是因為我們使用 XML 方式設定 SQL 時,如果在 where 標籤之後新增了註釋,那麼當有子元素滿足條件時,除了 < !-- --> 註釋會被 where 忽略解析以外,其它註釋例如 // 或 /**/ 或 -- 等都會被 where 當成首個子句元素處理,導致後續真正的首個 AND 子句元素或 OR 子句元素沒能被成功替換掉字首,從而引起語法錯誤。
同時,個人在實踐中也經常發現因為在XML中使用註釋不當導致SQL語法錯誤或執行出錯誤的結果。強烈建議,非必要,不要在XML中註釋掉SQL,可以通過版本管理工具來追溯歷史記錄和修改。
本文基於Mybatis中where標籤的使用,展開講了它的使用方式、特性以及拓展到trim標籤的替代作用,同時,也提到了在使用時可能會出現的坑。內容雖然簡單,但如果能夠很好地實踐、避免踩坑也是能力的體現。
到此這篇關於Mybatis的where標籤使用總結梳理的文章就介紹到這了,更多相關Mybatis的where標籤 內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45