Mybatis 批量插入数据 SQL

批量插入时,xxxMapper.java 中方法的参数都必须是 List ,泛型可以是 bean ,也可以是 Map 。配合使用 mybatis 的 foreach 即可。示例如下:
DemoMapper.java

public Integer batchInsertDemo(List<Demo> list);

1、只批量插入数值
这种写法适合插入数据的项不变,即 sql 中 VALUES 前括号中的列不变。若插入的项有所变化则适用下一种方法。
DemoMapper.xml

<insert id="batchInsertDemo" parameterType="java.util.List" >
    INSERT INTO demo(id,name,code,age,address) 
    VALUES 
    <foreach collection="list" item="item" index="index" separator="," >  
        (#{item.id},#{item.name},#{item.code},#{item.age},#{item.address}) 
    </foreach> 
</insert>

2、根据数值变动插入选项
此时需适用 foreach 循环包含整个sql语句,VALUES 前后括号中的插入项和插入数据使用 trim 标签,再配合使用 if 标签即可。示例如下:

<insert id="batchInsertDemo" parameterType="list" >
        <foreach collection="list" item="item" index="index" separator=";">
            INSERT INTO demo
            <trim prefix="(" suffix=")" suffixOverrides="," >
                <if test="item.id!= null">
                    id,
                </if>
                <if test="item.name!= null">
                    name,
                </if>
                <if test="item.code != null">
                    code,
                </if>
                <if test="item.age!= null">
                    age,
                </if>
                <if test="item.address!= null">
                    address,
                </if>
            </trim>
            <trim prefix="values (" suffix=")" suffixOverrides="," >
                if test="item.id!= null">
                    #{item.id,jdbcType=INTEGER},
                </if>
                <if test="item.name!= null">
                    #{item.name,jdbcType=VARCHAR},
                </if>
                <if test="item.code != null">
                    #{item.code ,jdbcType=VARCHAR},
                </if>
               <if test="item.age!= null">
                    #{item.age,jdbcType=INTEGER},
                </if>
                <if test="item.address!= null">
                    #{item.address,jdbcType=VARCHAR},
                </if>
            </trim>
        </foreach>
    </insert>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值