您好,登錄后才能下訂單哦!
這篇文章主要介紹“mybatis批量添加,批量更新前怎么判斷是否已經存在”,在日常操作中,相信很多人在mybatis批量添加,批量更新前怎么判斷是否已經存在問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”mybatis批量添加,批量更新前怎么判斷是否已經存在”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
批量添加之前判斷是否已經存在,foreach separator用UNION ALL。
批量修改
UPDATE course SET name = ‘course1' WHEREid = ‘id1';
UPDATE course SET name=‘course1' WHERE id in(‘id1',‘id2','id3);
比較普通的寫法,是通過循環,依次執行update語句。
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沒有提供直接的方法來實現批量更新,但可以使用case when語法來實現這個功能。
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>
屬性說明
1.prefix,suffix 表示在trim標簽包裹的部分的前面或者后面添加內容
2.如果同時有prefixOverrides,suffixOverrides 表示會用prefix,suffix覆蓋Overrides中的內容。
3.如果只有prefixOverrides,suffixOverrides 表示刪除開頭的或結尾的xxxOverides指定的內容。
看另外一個示例:
<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…then…是sql中的"switch" 語法。這里借助mybatis的語法來拼湊成了批量更新的sql,上面的意思就是批量更新id在updateBatch參數所傳遞List中的數據的status字段。還可以使用實現同樣的功能,代碼如下:
<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>
其結構如下:
update mydata_table set status = case when id = #{item.id} then #{item.status}//此處應該是<foreach>展開值 ... end where id in (...);
如果對要更新的數據進行判斷,只有符合條件的數據才能進行更新,這種情況可以這么做:
<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的數據才能進行status更新.其他的將使用默認值更新,而不會保持原數據不變.如果要保持原數據不變呢?
即滿足條件的更新,不滿足條件的保持原數據不變,簡單的來做就是再加一個,因為mybatis中沒有if…else…語法,但可以通過多個實現同樣的效果,如下:
<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 //這里就是原數據 </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//原數據 </if> </foreach> </trim> </trim> where id in <foreach collection="list" index="index" item="item" separator="," open="(" close=")"> #{item.id,jdbcType=BIGINT} </foreach> </update>
1.組裝多個update語句,這種方式需要設置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>
經測試 100條數據的時候第一種方式的效率比第二種差不多高1倍。
到此,關于“mybatis批量添加,批量更新前怎么判斷是否已經存在”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。