<choose>
<when test="id !=null">
and id = #{id}
</when>
<otherwise>
and id is null
</otherwise>
</choose>
其中choose为一个整体
when是if
otherwise是else
<choose>
<when test="id !=null">
and id = #{id}
</when>
<otherwise>
and id is null
</otherwise>
</choose>
其中choose为一个整体
when是if
otherwise是else