溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

mybatis批量添加,批量更新前怎么判斷是否已經(jīng)存在

發(fā)布時(shí)間:2022-08-27 09:18:24 來(lái)源:億速云 閱讀:540 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“mybatis批量添加,批量更新前怎么判斷是否已經(jīng)存在”,在日常操作中,相信很多人在mybatis批量添加,批量更新前怎么判斷是否已經(jīng)存在問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”mybatis批量添加,批量更新前怎么判斷是否已經(jīng)存在”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

批量添加,批量更新之前判斷是否已經(jīng)存在

批量添加之前判斷是否已經(jīng)存在,foreach  separator用UNION ALL。

mybatis批量添加,批量更新前怎么判斷是否已經(jīng)存在

批量修改

mybatis批量添加,批量更新前怎么判斷是否已經(jīng)存在

批量更新update詳解文檔

1 更新單條記錄

UPDATE course SET name = ‘course1' WHEREid = ‘id1';

2 更新多條記錄的同一個(gè)字段為同一個(gè)值

UPDATE course SET name=‘course1' WHERE id in(‘id1',‘id2','id3);

3 更新多條記錄為多個(gè)字段為不同的值

比較普通的寫法,是通過(guò)循環(huán),依次執(zhí)行update語(yǔ)句。

Mybatis寫法如下:

<update id="updateBatch"  parameterType="java.util.List">  
    <foreach collection="list" item="item" index="index" open="" close="" separator=";">
        update course
        <set>
            name=${item.name}
        </set>
        where id = ${item.id}
    </foreach>      
</update>

一條記錄update一次,性能比較差,容易造成阻塞。

MySQL沒(méi)有提供直接的方法來(lái)實(shí)現(xiàn)批量更新,但可以使用case when語(yǔ)法來(lái)實(shí)現(xiàn)這個(gè)功能。

UPDATE course
    SET name = CASE id 
        WHEN 1 THEN 'name1'
        WHEN 2 THEN 'name2'
        WHEN 3 THEN 'name3'
    END, 
    title = CASE id 
        WHEN 1 THEN 'New Title 1'
        WHEN 2 THEN 'New Title 2'
        WHEN 3 THEN 'New Title 3'
    END
WHERE id IN (1,2,3)

這條sql的意思是,如果id為1,則name的值為name1,title的值為New Title1;依此類推。

在Mybatis中的配置則如下:

 <update id="updateBatch"parameterType="list">
            update course
            <trim prefix="set" suffixOverrides=",">
             <trim prefix="name=case" suffix="end,">
                 <foreach collection="list" item="item" index="index">
                         <if test="item.name!=null">
                          when id=#{item.id} then #{item.name}
                         </if>
                 </foreach>
              </trim>
              <trim prefix="title =case" suffix="end,">
                 <foreach collection="list" item="item" index="index">
                         <if test="item.title!=null">
                          when id=#{item.id} then #{item.title}
                         </if>
                 </foreach>
              </trim>
             </trim>
            where
            <foreach collection="list" separator="or" item="item" index="index">
              id=#{item.id}
          </foreach>
</update>

屬性說(shuō)明

  • 1.prefix,suffix 表示在trim標(biāo)簽包裹的部分的前面或者后面添加內(nèi)容

  • 2.如果同時(shí)有prefixOverrides,suffixOverrides 表示會(huì)用prefix,suffix覆蓋Overrides中的內(nèi)容。

  • 3.如果只有prefixOverrides,suffixOverrides 表示刪除開頭的或結(jié)尾的xxxOverides指定的內(nèi)容。

4 sql批量更新

看另外一個(gè)示例:

   <update id="updateBatch"parameterType="java.util.List">
    update mydata_table 
    set  status=
    <foreach collection="list" item="item" index="index" 
        separator=" " open="case ID" close="end">
        when #{item.id} then #{item.status}
    </foreach>
    where id in
    <foreach collection="list" index="index" item="item" 
        separator="," open="(" close=")">
        #{item.id,jdbcType=BIGINT}
    </foreach>
 </update>

其中when&hellip;then&hellip;是sql中的"switch" 語(yǔ)法。這里借助mybatis的語(yǔ)法來(lái)拼湊成了批量更新的sql,上面的意思就是批量更新id在updateBatch參數(shù)所傳遞List中的數(shù)據(jù)的status字段。還可以使用實(shí)現(xiàn)同樣的功能,代碼如下:

<update id="updateBatch" parameterType="java.util.List">
        update mydata_table
        <trim prefix="set" suffixOverrides=",">
            <trim prefix="status =case" suffix="end,">
                <foreach collection="list" item="item" index="index">
                     when id=#{item.id} then #{item.status}
                </foreach>
            </trim>
        </trim>
        where id in
        <foreach collection="list" index="index" item="item" separator="," open="(" close=")">
            #{item.id,jdbcType=BIGINT}
        </foreach>
</update>

其結(jié)構(gòu)如下:

    update mydata_table 
    set status = 
    case
        when id = #{item.id} then #{item.status}//此處應(yīng)該是<foreach>展開值
        ...
    end
    where id in (...);

如果對(duì)要更新的數(shù)據(jù)進(jìn)行判斷,只有符合條件的數(shù)據(jù)才能進(jìn)行更新,這種情況可以這么做:

<trim prefix="status =case" suffix="end,">
     <foreach collection="list" item="item" index="index">
         <if test="item.status !=null and item.status != -1">
             when id=#{item.id} then #{item.status}
         </if>
     </foreach>
</trim>

這樣的話只有要更新的list中status != null && status != -1的數(shù)據(jù)才能進(jìn)行status更新.其他的將使用默認(rèn)值更新,而不會(huì)保持原數(shù)據(jù)不變.如果要保持原數(shù)據(jù)不變呢?

即滿足條件的更新,不滿足條件的保持原數(shù)據(jù)不變,簡(jiǎn)單的來(lái)做就是再加一個(gè),因?yàn)閙ybatis中沒(méi)有if&hellip;else&hellip;語(yǔ)法,但可以通過(guò)多個(gè)實(shí)現(xiàn)同樣的效果,如下:

<trim prefix="status =case" suffix="end,">
     <foreach collection="list" item="item" index="index">
         <if test="item.status !=null and item.status != -1">
             when id=#{item.id} then #{item.status}
         </if>
         <if test="item.status == null or item.status == -1">
             when id=#{item.id} then mydata_table.status      //這里就是原數(shù)據(jù)
         </if>
     </foreach>
</trim>

整體批量更新的寫法如下:

<update id="updateBatch"parameterType="java.util.List">
        update mydata_table
        <trim prefix="set" suffixOverrides=",">
            <trim prefix="status =case" suffix="end,">
                 <foreach collection="list" item="item" index="index">
                     <if test="item.status !=null and item.status != -1">
                         when id=#{item.id} then #{item.status}
                     </if>
                     <if test="item.status == null or item.status == -1">
                         when id=#{item.id} then mydata_table.status//原數(shù)據(jù)
                     </if>
                 </foreach>
            </trim>
        </trim>
        where id in
        <foreach collection="list" index="index" item="item" separator="," open="(" close=")">
            #{item.id,jdbcType=BIGINT}
        </foreach>
</update>

1.組裝多個(gè)update語(yǔ)句,這種方式需要設(shè)置jdbc連接 allowMultiQueries=true

   <update id="updateEquementWaterTest"   parameterType="java.util.List">
         <foreach collection="list" item="item" index="index">
                              update rent_hl_room l
                SET l.water_meter_id=#{item.equipmentCode},
                l.water_meter_source_type=#{item.equipmentSource}
                WHERE 
                    l.room_id=#{item.roomId};
             </foreach>
     </update>

2.case when

UPDATE 
  rent_hl_room l 
SET
  electricity_meter_id = 
  CASE
    WHEN room_id = 1942
    THEN 180524348 
    WHEN room_id = 1945
    THEN 180524480 
  END,
  electricity_meter_source_type = 
  CASE
    WHEN room_id = 1942 
    THEN ym 
    WHEN room_id = 1945 
    THEN ym 
  END 
WHERE room_id = 1942 
  OR room_id = 1945
          <update id="updateEquementWater"   parameterType="java.util.List">
              update rent_hl_room l
            <trim prefix="set" suffixOverrides=",">
             <trim prefix="water_meter_id =case" suffix="end,">
                 <foreach collection="list" item="i" index="index">
                         <if test="i.equipmentCode!=null">
                          when room_id=#{i.roomId} then #{i.equipmentCode}
                         </if>
                 </foreach>
              </trim>
              <trim prefix=" water_meter_source_type =case" suffix="end,">
                 <foreach collection="list" item="i" index="index">
                         <if test="i.equipmentSource!=null">
                          when room_id=#{i.roomId} then #{i.equipmentSource}
                         </if>
                 </foreach>
              </trim>
             </trim>
            where
            <foreach collection="list" separator="or" item="i" index="index" >
              room_id=#{i.roomId}
          </foreach>
        
       </update>

經(jīng)測(cè)試 100條數(shù)據(jù)的時(shí)候第一種方式的效率比第二種差不多高1倍。

到此,關(guān)于“mybatis批量添加,批量更新前怎么判斷是否已經(jīng)存在”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI