mybatis 遍历foreach中or拼接的操作
作者:陌下微尘
这篇文章主要介绍了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和or select * 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>
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。