首先在mybatis语法中是没有 if else写法得,
不过有他的替代 choose,写法如下:
<choose>
<when test="params!=null">
right JOIN
</when>
<otherwise>
LEFT JOIN
</otherwise>
</choose>
以上即可实现 if else 逻辑
https://www.leftso.com/article/765.html