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


版权声明:本文为weixin_40598838原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。