oralce 批量更新

Posted JAVA-ANDROID

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oralce 批量更新相关的知识,希望对你有一定的参考价值。

<update id="batchUpdateCompensatoryData" parameterType="java.util.List">
<foreach collection="detailInfos" item="detailInfo" index="index" open="begin" close=";end;" separator=";">
update TD_B_COMPENSATORY_DETAIL_INFO
<set>
update_date= sysdate,
overdue_days= #{detailInfo.overdueDays,jdbcType=DOUBLE},
overdue_manage_fee=#{detailInfo.overdueManageFee,jdbcType=DOUBLE},
overdue_penalty=#{detailInfo.overduePenalty,jdbcType=DOUBLE},
other_fee=#{detailInfo.otherFee,jdbcType=DOUBLE},
comp_money=#{detailInfo.compMoney,jdbcType=DOUBLE},
repay_capital=#{detailInfo.repayCapital,jdbcType=DOUBLE},
repay_interest=#{detailInfo.repayInterest,jdbcType=DOUBLE},
repay_sum_money=#{detailInfo.repaySumMoney,jdbcType=DOUBLE}
</set>
where id=#{detailInfo.id}
</foreach>
</update>

以上是关于oralce 批量更新的主要内容,如果未能解决你的问题,请参考以下文章

为啥批量插入/更新更快?批量更新如何工作?

Thinkphp怎么批量更新数据

Thinkphp怎么批量更新数据

Thinkphp怎么批量更新数据

mybatis 怎么批量更新操作

mysql进阶 十四 批量更新与批量更新多条记录的不同值实现方法