mybatis if else

首先在mybatis语法中是没有 if else写法得,
mybatis

不过有他的替代  choose,写法如下:

        <choose>
            <when test="params!=null">
                right JOIN
            </when>
            <otherwise>
                LEFT JOIN
            </otherwise>
        </choose>

以上即可实现 if else 逻辑

原创文章,作者:745907710,如若转载,请注明出处:https://blog.ytso.com/243766.html

(0)
上一篇 2022年4月11日
下一篇 2022年4月11日

相关推荐

发表回复

登录后才能评论