【Mybatis】【Oracle】批量更新

探讨批量更新数据三种写法的效率问题。

实现方式有三种

一、用for循环,通过循环传过来的参数集合,循环出N条sql

注意:该法要想成功,需要(针对mysql)在db链接url后面带一个参数  &allowMultiQueries=true,即: 

 jdbc:mysql://localhost:3306/mysqlTest?characterEncoding=utf-8&allowMultiQueries=true
<!-- 批量更新第一种方法,通过接收传进来的参数list进行循环着组装sql -->
<update id="updateBatch" parameterType="java.util.List" >
    <foreach collection="list" item="item" index="index" open="" close="" separator=";">
        update standard_relation
        <set>
            <if test="item.standardFromUuid != null" >
                standard_from_uuid = #{item.standardFromUuid,jdbcType=VARCHAR},
            </if>
            <if test="item.standardToUuid != null" >
                standard_to_uuid = #{item.standardToUuid,jdbcType=VARCHAR},
            </if>
            <if test="item.gmtModified != null" >
                gmt_modified = #{item.gmtModified,jdbcType=TIMESTAMP},
            </if>
        </set>
        where id = #{item.id,jdbcType=BIGINT}
    </foreach>
</update>

二、用case... when... 条件判断变相的进行批量更新  

<!-- 批量更新第二种方法,通过 case when语句变相的进行批量更新 -->
<update id="updateBatch" parameterType="java.util.List" >
    update standard_relation
    <trim prefix="set" suffixOverrides=",">
        <trim prefix="standard_from_uuid =case" suffix="end,">
            <foreach collection="list" item="i" index="index">
                <if test="i.standardFromUuid!=null">
                    when id=#{i.id} then #{i.standardFromUuid}
                </if>
            </foreach>
        </trim>
        <trim prefix="standard_to_uuid =case" suffix="end,">
            <foreach collection="list" item="i" index="index">
                <if test="i.standardToUuid!=null">
                    when id=#{i.id} then #{i.standardToUuid}
                </if>
            </foreach>
        </trim>
        <trim prefix="gmt_modified =case" suffix="end,">
            <foreach collection="list" item="i" index="index">
                <if test="i.gmtModified!=null">
                    when id=#{i.id} then #{i.gmtModified}
                </if>
            </foreach>
        </trim>
    </trim>
    where
    <foreach collection="list" separator="or" item="i" index="index" >
        id=#{i.id}
    </foreach>
</update>

注意:

        如果list为空,但是也需要更新,那么就会报错;因为拼装后的sql语句是update standardRelation where id = ,没有set关键字;此时解决方法就是把最内层的<if>判断去掉,而此时,该字段可以被更新为null。

三、用ON DUPLICATE KEY UPDATE进行批量更新

批量更新第三种方法,用ON DUPLICATE KEY UPDATE
<insert id="updateBatch" parameterType="java.util.List">
    insert into standard_relation(id,relation_type, standard_from_uuid,standard_to_uuid, relation_score, stat,last_process_id, is_deleted, gmt_created,
gmt_modified,relation_desc) 
    VALUES
    <foreach collection="list" item="item" index="index" separator=",">
        (#{item.id,jdbcType=BIGINT},
        #{item.relationType,jdbcType=VARCHAR},  
        #{item.standardFromUuid,jdbcType=VARCHAR},
        #{item.standardToUuid,jdbcType=VARCHAR}, 
        #{item.relationScore,jdbcType=DECIMAL}, 
        #{item.stat,jdbcType=TINYINT},
        #{item.lastProcessId,jdbcType=BIGINT}, 
        #{item.isDeleted,jdbcType=TINYINT}, 
        #{item.gmtCreated,jdbcType=TIMESTAMP},
        #{item.gmtModified,jdbcType=TIMESTAMP},
        #{item.relationDesc,jdbcType=VARCHAR})
    </foreach>
    ON DUPLICATE KEY UPDATE
    id = VALUES(id),
    relation_type = VALUES(relation_type),
    standard_from_uuid = VALUES(standard_from_uuid),
    standard_to_uuid = VALUES(standard_to_uuid),
    relation_score = VALUES(relation_score),
    stat = VALUES(stat),
    last_process_id = VALUES(last_process_id),
    is_deleted = VALUES(is_deleted),
    gmt_created = VALUES(gmt_created),
    gmt_modified = VALUES(gmt_modified),
    relation_desc = VALUES(relation_desc)
</insert>

效率测试

@Override
public void updateStandardRelations() {
    List<StandardRelation> list = standardRelationMapper.selectByStandardUuid("xiemingjieupdate");

    for(StandardRelation tmp : list){
        tmp.setStandardFromUuid(tmp.getStandardFromUuid()+"update");
        tmp.setStandardToUuid(tmp.getStandardToUuid()+"update");
    }

    long begin=System.currentTimeMillis();
    standardRelationManager.updateBatch(list);
    long end=System.currentTimeMillis();

    System.out.print("当前的批量更新的方法用时"+(end-begin)+"ms");

}

结果比较

结果说明

      sql语句for循环效率其实相当高的,因为它仅仅有一个循环体,只不过最后update语句比较多,量大了就有可能造成sql阻塞。

      case when虽然最后只会有一条更新语句,但是xml中的循环体有点多,每一个case when 都要循环一遍list集合,所以大批量拼sql的时候会比较慢,所以效率问题严重。使用的时候建议分批插入。

      duplicate key update可以看出来是最快的,但是一般大公司都禁用,公司一般都禁止使用replace into和INSERT INTO … ON DUPLICATE KEY UPDATE,这种sql有可能会造成数据丢失和主从上表的自增id值不一致。而且用这个更新时,记得一定要加上id,而且values()括号里面放的是数据库字段,不是java对象的属性字段。

根据效率,安全方面综合考虑,选择适合的很重要。

参考文章

https://blog.csdn.net/q957967519/article/details/88669552

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值