为什么在动态SQL中where条件判断的时候后面跟上and不会报错
假如现在我们要查询一个姓张的且名字大于25的人:
xml中的写法
select <include refid="userCols" /> from user
<where>
<if test="name != null and name != ''">
and name like concat(#{name}, '%')
</if>
<if test="age != null and age != ''">
and age > #{age}
</if>
</where>
接口中的写法
public List findUsersByName(@Param(“name”) String name, @Param(“age”) Integer age);
如果一个人的姓名为空的话,第一个if语句就不会执行,但是后面的if语句成立的话,会形成
select * from user where and age >; #{age},这种sql语句在执行过程中是会报错的,但是实际运行时却没有报错,sql语句变成了select id, name, age from user where ? like concat (?, ‘%’) ,and不见了?,为什么,且在没有名字的情况下记录User [id=4, name=, age=26]也被查了出来,在查阅了各种资料之后,才知道,如果标签返回的内容是以AND 或OR 开头的,where语句会将多余的and或or剔除掉。