如果是String类型的字符串进行判空的时候:
<if test="inspectOrg != null and inspectOrg != ‘‘"> INSPECT_ORG = #{inspectOrg} </if>
但是如果是实体类中的Integer类型,就是去掉空字符串的判断:
<if test="inspectTaio != null"> AND INSPECT_TAIO = #{inspectTaio} </if>
否则会被空字符串判定条件下,导致添加不上需要连接的条件查询语句,
最后导致执行的sql,会在执行的时候,使用0的时候会不能执行
原文地址:https://www.cnblogs.com/qingmuchuanqi48/p/11594716.html
时间: 2024-10-23 21:41:45