首先在mybatis语法中是没有 if else写法得,
不过有他的替代 choose,写法如下:
<choose>
<when test="params!=null">
right JOIN
</when>
<otherwise>
LEFT JOIN
</otherwise>
</choose>
以上即可实现 if else 逻辑
原创文章,作者:745907710,如若转载,请注明出处:https://blog.ytso.com/243766.html