mybatis if/else标签

<choose>
            <when test="id !=null">
                and id  = #{id}
            </when>
            <otherwise>
                and id is null
            </otherwise>
        </choose>

其中choose为一个整体
when是if
otherwise是else

你可能感兴趣的:(sql)