mybatis map作为参数使用foeach批量update数据

概述

接触到需要使用map作为参数进行数据的输入批量的来更新数据

demo

一般的使用方法是这样的

<select>
select *
from tb_product
where status = 1
<if test="categoryIdList != null">
            and category_id in
            <foreach item="item" index="index" open="(" separator="," close=")" collection="categoryIdList">
                #{item}
            </foreach>
        </if>
</select>

但是在日常中也会遇到需要使用map作为参数使用foreach更新update数据的情况,此时该如何用呐?

@org.junit.Test
    public void stockTest(){
        Map<Long,Integer> map = new HashMap<>();
        map.put(9L,10);
        map.put(8L,8);
        stockService.returnStock(map);
    }
<update id="returnStock">
        <foreach collection="stockIn" item="value" index="key" separator=";">
            UPDATE stock  SET count = count + #{value} where product_id=#{key}
        </foreach>
    </update>

但是这样的情况会报

Error updating database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘UPDATE stock SET count = count + 10 where product_id=9’ at line 3

错误

怎么办呐?
在数据库配置上添加 &allowMultiQueries=true

即可

补充一点
foreach的index属性中,入参是list和数组时,index是元素的序号,在map中,index是元素的key,item是元素的value

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值