Mybatis中的sql语句处理在遇到where字句中有多项判断,并且判断的入参可能为空时。如果是忽略或者是只是用<if>标签判断非空,仍可能引起查询不正确,或sql语句报错。
正确的使用方法时<if>标签搭配<where>标签或<set>标签使用,<set>标签用于可用于插入语句或更新语句。
<where><if>
<select id="selectUserByUsernameAndSex" parameterType="com.qcby.entity.User"
resultType="com.qcby.entity.User">
select * from user
<where>
<if test="username != null">
and username=#{username}
</if>
<if test="sex != null">
and sex=#{sex}
</if>
</where>
</select>
使用<where>标签会优化可能引起问题and、or等字段,自动剔除引起问题的字段。
<set><if>
<update id="update" parameterType="com.qcby.entity.User">
update user
<set>
<if test="username !=null and username!="">
username = #{username},
</if>
<if test="address != null and address != "">
address = #{address},
</if>
</set>
where id = #{id}
</update>
<set>标签会优化多字段同时赋值可能引起问题的","。