首页 > 移动平台 > 详细

Mybatis Mapper中的if-else使用

时间:2021-06-07 12:10:23      阅读:30      评论:0      收藏:0      [点我收藏+]

方法一:一般用法

select * from orcl_test t
<where>
  <if test="query == 0">
    and t.status = 1 
  </if>
  <if test="query != 0">
    and t.status NOT IN (2,3,4)
  </if>
  and t.delete_flag = 1
</where>

方法二:使用choose标签代替if-else。

select * from orcl_test t
<where>
  <choose>
    <when test="query == 0">
      and t.status = 1
    </when>
    <otherwise>
      and t.status IN (2,3,4)
    </otherwise>
  </choose>
  and t.delete_flag = 1
</where>

 

Mybatis Mapper中的if-else使用

原文:https://www.cnblogs.com/ningcc/p/14857507.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!