Mybatis 动态SQL注解 in操作符的用法

在SQL语法中如果我们想使用in的话直接可以像如下一样使用:

update user set status='1' where id in (1,2,3) ;

select * from user where id in (1,2,3) ;

但是如果在MyBatis中的使用 in 操作符,像下面这样写的话,肯定会报错:

@Update("update user set status=#{status} where id in #{userIds}") 
public void updateUserStatus(@Param("userIds") String userIds, @Param("status") int status);

其中 userIds
= (1,2,3)

这样直接拼接的写法,看似很简单,在 findByCondition 用没问题,但在动态SQL注解中MyBatis是不支持的。

上帝关上了一扇门,就肯定会打开一扇窗。

对于上面这种情况,MyBatis中提供了foreach语句来实现IN查询。

foreach语法如下:  foreach语句中, collection属性的参数类型可以支持:List、数组、map集合

​  collection: 必须跟mapper.java中@Param标签指定的元素名一样
​  item: 表示在迭代过程中每一个元素的别名,可以随便起名,但是必须跟元素中的#{}里面的名称一样。
  index:表示在迭代过程中每次迭代到的位置(下标)
  open:前缀, sql语句中集合都必须用小括号()括起来
​  close:后缀
  separator:分隔符,表示迭代时每个元素之间以什么分隔

示例:

@Update({"<script>",
            "update user set status=#{status} where id in ",
            "<foreach collection="userIdList" item="userId" index="index" open="(" separator="," close=")">",
                 "#{userId}",
            "</foreach>",
         "</script>"})
public void updateUserStatus(@Param("userIdList") List<String> userIdList, @Param("status") int status);

共同学习,共同进步,若有补充,欢迎指出,谢谢!

原文地址:https://www.cnblogs.com/dengguangxue/p/11736728.html