MyBatis中的動態SQL可以使用
如果需要在動態SQL中使用類似于Java中的else if語句,可以通過嵌套
<select id="selectUsers" resultType="User">
SELECT * FROM users
<where>
<choose>
<when test="state == 'ACTIVE'">
AND state = 'ACTIVE'
</when>
<when test="state == 'INACTIVE'">
AND state = 'INACTIVE'
</when>
<otherwise>
AND state = 'UNKNOWN'
</otherwise>
</choose>
</where>
</select>
在上面的例子中,