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中的動態(tài)sql需要and和or拼接條件判斷的寫法
通常在java后臺或者前端js中多個條件組合判斷中使用and或者or 如下
//使用&或者&& | 和||if(a==1&b==2){}//或者sql文中的and和orselect * from emp where empno=’7788’ and deptno=’20’但是動態(tài)sql呢?
那就需要()把每一個條件括起來在加and 或者or
//動態(tài)添加語句<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>
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。如有錯誤或未考慮完全的地方,望不吝賜教。
相關文章:
1. Oracle災難防護的關鍵技術2. Access創(chuàng)建一個簡單MIS管理系統(tǒng)3. 關于Sql server數(shù)據(jù)庫日志滿的快速解決辦法4. 提高商業(yè)智能環(huán)境中DB2查詢的性能(2)5. 傳甲骨文將增加對MySQL投資與微軟競爭6. MSSQL跨服務器連接的幾種方法7. 在SQL Server中快速刪除重復記錄8. Mybatis數(shù)據(jù)批量插入如何實現(xiàn)9. MySql設置指定用戶數(shù)據(jù)庫查看查詢權限10. Microsoft Office Access復制數(shù)據(jù)表的方法
