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

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);

 like this ,list is the param key ,item is the each value.

<select id="studentList" resultType="com.ywt.springboot.model.Student">
        select *
        from student
        where id in
        <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
            #{item}
        </foreach>
    </select>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值