在MyBatis中,可以使用<if>
標(biāo)簽來進(jìn)行boolean判斷。例如,可以在<select>
或<update>
等SQL語句中使用<if>
標(biāo)簽來判斷條件是否成立,從而動態(tài)生成SQL語句。
例如,可以這樣使用<if>
標(biāo)簽來進(jìn)行boolean判斷:
<select id="getUserById" parameterType="int" resultType="User">
select * from user
<where>
<if test="active == true">
and active = 1
</if>
</where>
</select>
在上面的例子中,如果參數(shù)active
為true,則會動態(tài)添加and active = 1
到SQL語句中,否則不會添加。