在MyBatis中,otherwise是choose元素中的一個條件分支,用于指定當其他條件不滿足時的默認分支。通常情況下,choose元素用于在多個條件中選擇一個滿足條件的分支執行。
下面是一個使用otherwise的示例:
<select id="selectBlog" parameterType="int" resultType="Blog">
SELECT * FROM blog
WHERE id = #{id}
<choose>
<when test="author != null">
AND author = #{author}
</when>
<when test="title != null">
AND title = #{title}
</when>
<otherwise>
AND views > 100
</otherwise>
</choose>
</select>
在上面的示例中,如果author和title都不為null,則根據author和title查詢blog;如果只有author不為null,則根據author查詢blog;如果只有title不為null,則根據title查詢blog;如果author和title都為null,則查詢views大于100的blog。
通過使用otherwise,可以指定在沒有其他條件滿足時的默認分支邏輯。