mybatis 遍歷foreach中or拼接的操作
我就廢話不多說了,大家還是直接看看關鍵代碼吧:
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 如下
//使用&或者&& | 和||if(a==1&b==2){}//或者sql文中的and和orselect * from emp where empno=’7788’ and deptno=’20’但是動態sql呢?
那就需要()把每一個條件括起來在加and 或者or
//動態添加語句<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>
以上為個人經驗,希望能給大家一個參考,也希望大家多多支持好吧啦網。如有錯誤或未考慮完全的地方,望不吝賜教。
相關文章: