我就廢話不多說了,大家還是直接看看關鍵代碼吧:
1
2
3
4
5
6
|
select id, name from t_keys where 1 = 1 < if test= "keys != null" > <foreach collection= "keys" item= "key" open= "AND (" close= ")" separator= "or" > name = #{key} </foreach> </ if > |
補充:mybatis xml中的動態sql需要and和or拼接條件判斷的寫法
通常在java后臺或者前端js中多個條件組合判斷中使用and或者or 如下
1
2
3
4
5
|
//使用&或者&& | 和|| if (a== 1 &b== 2 ){ } //或者sql文中的and和or select * from emp where empno= '7788' and deptno= '20' |
但是動態sql呢?
那就需要()把每一個條件括起來在加and 或者or
1
2
3
4
5
6
|
//動態添加語句 <if test= "(buhinmt.buhinCd!= null and buhinmt.buhinCd != '') or(buhinmt.syohinCd!= null and buhinmt.syohinCd != '')" > AND BM.buhin_cd = SMBM.buhin_cd AND SMBM.syohin_cd = SM.syohin_cd AND SM.syurisaki_cd = SYUM.syurisaki_cd </if> |
以上為個人經驗,希望能給大家一個參考,也希望大家多多支持服務器之家。如有錯誤或未考慮完全的地方,望不吝賜教。
原文鏈接:https://blog.csdn.net/qq_33045443/article/details/99942323