sql语句中
有参数为空,
AND a.end_date <![CDATA[ >= ]]> #{today}
例如today 没有判断是否为空 就会出现这个问题
如果 先判断下 就 就这个问题了
<if test=”webType != null and webType != ””>
AND a.web_type = #{webType}
</if>
sql语句中 有参数为空, AND a.end_date <![CDATA[ >= ]]> #{t…
sql语句中
有参数为空,
AND a.end_date <![CDATA[ >= ]]> #{today}
例如today 没有判断是否为空 就会出现这个问题
如果 先判断下 就 就这个问题了
<if test=”webType != null and webType != ””>
AND a.web_type = #{webType}
</if>