日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

批量更新一般在批處理系統(tǒng)或者定時(shí)任務(wù)中比較常見,常見的訴求就是對表中多條數(shù)據(jù)進(jìn)行更新(待更新的值是不一樣的,這個(gè)區(qū)別于update ... where in(...))

1.利用case ... when ... 方式批量更新

特點(diǎn):適合數(shù)據(jù)量小的更新,數(shù)據(jù)量大時(shí)可能會產(chǎn)生間隙鎖,甚至表鎖,會影響性能,這個(gè)需要留意

常見的sql腳本如下:

UPDATE t_demo_audit_order SET
 prod_no = CASE id WHEN 1 THEN 'C1' WHEN 2 THEN 'C2' WHEN 3 THEN 'C3' WHEN 4 THEN 'C4' END,
 busi_no = CASE id WHEN 1 THEN 'B1' WHEN 2 THEN 'B2' WHEN 3 THEN 'B3' WHEN 4 THEN 'B4' END
WHERE id IN (1, 2, 3, 4)

MyBatis動態(tài)拼接的sql腳本如下:

<update id="batchUpdateByPrimaryKey" parameterType="JAVA.util.List">
        update t_demo_audit_order set
        prod_no = case id
        <foreach collection="list" item="item">
            when #{item.id} then #{item.prodNo}
        </foreach>
        end,
        busi_no = case id
        <foreach collection="list" item="item">
            when #{item.id} then #{item.busiNo}
        </foreach>
        end
        where id in
        <foreach collection="list" item="item" open="(" separator="," close=")">
            #{item.id}
        </foreach>
    </update>

2.批量執(zhí)行單條update語句

特點(diǎn):可以充分利用索引,有較好的性能;

注意:sql的大小不能超過數(shù)據(jù)庫的限制,否則會失敗。一個(gè)批次最大可以執(zhí)行多少條update語句,這個(gè)沒有絕對的數(shù)據(jù),需要依據(jù)自己的表結(jié)構(gòu)及數(shù)據(jù)量在測試環(huán)境進(jìn)行嘗試,找到最佳數(shù)量。比如你可以依次執(zhí)行1000條,2000條,3000條,然后對比性能即可選出理想的數(shù)量。

ps:數(shù)據(jù)庫連接配置需要增加參數(shù) allowMultiQueries=true

配置db連接url

sql腳本如下:

update demo_record set test_order_no = 'bar01', test_dt = 'xxx' where id = 1 ; 
update demo_record set test_order_no = 'bar02', test_dt = 'xxx' where id = 2 ;
update demo_record set test_order_no = 'bar03', test_dt = 'xxx' where id = 3 ;
update demo_record set test_order_no = 'bar04', test_dt = 'xxx' where id = 4 ;
update demo_record set test_order_no = 'bar05', test_dt = 'xxx' where id = 5 ;
update demo_record set test_order_no = 'bar05', test_dt = 'xxx' where id = 6 ;
......

mybatis動態(tài)拼接的sql腳本如下:

<update id="batchUpdateByPrimaryKey"  parameterType="java.util.List">
    <foreach collection="list" item="item" open="" close="" separator=";">
        update demo_record set
        test_order_no = #{item.testOrderNo},
        test_dt = #{item.testDt}
        where id = #{item.id}
    </foreach>
</update>

之前處理的一個(gè)需求,滿足自己的業(yè)務(wù)需求即可,sql耗時(shí)如下:

批量更新耗時(shí)

分享到:
標(biāo)簽:MySQL
用戶無頭像

網(wǎng)友整理

注冊時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運(yùn)動步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定