在MyBatis中使用多条件判断可以通过使用choose、when和otherwise标签来实现。以下是一个示例:
<select id="selectUser" parameterType="map" resultType="User">
SELECT * FROM users
<where>
<choose>
<when test="username != null">
AND username = #{username}
</when>
<when test="email != null">
AND email = #{email}
</when>
<otherwise>
AND id = #{id}
</otherwise>
</choose>
</where>
</select>
在上面的示例中,我们使用了choose标签来定义多个条件判断,每个条件判断使用when标签来表示。根据传入的参数不同,MyBatis会根据条件判断来拼接不同的SQL语句。如果所有条件都不满足,则使用otherwise标签中定义的条件。