码迷,mamicode.com
首页 > 数据库 > 详细

mybatis Oracle 批量插入,批量更新

时间:2018-02-03 16:59:36      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:nio   arch   rac   pre   mybatis   city   for   oracl   parameter   

传入的参数只要是list类型的参数就行了。。。。。。。。。。。。。。
1、批量插入

<insert id="insertBatch" parameterType="java.util.List">
INSERT INTO T_CITY_INDEX(
id,city_code
)
select SEQ_CITY_INDEX.NEXTVAL,cd.* from(
<foreach collection="list" item="item" index="index" close=")" open="(" separator="union">
select
#{item.cityCode,jdbcType=VARCHAR},
#{item.cityName,jdbcType=VARCHAR}
from dual
</foreach>
) cd
</insert>

2、批量跟新

<update id="updateBatch" parameterType="java.util.List">
<foreach collection="list" item="item" index="index" open="begin" close=";end;" separator=";">
update T_CITY_INDEX t
set
t.city_name= #{item.cityName,jdbcType=VARCHAR} ,
t.district_name= #{item.districtName,jdbcType=VARCHAR} ,
where t.id = #{item.id,jdbcType=NUMERIC}
</foreach>
</update>

mybatis Oracle 批量插入,批量更新

标签:nio   arch   rac   pre   mybatis   city   for   oracl   parameter   

原文地址:https://www.cnblogs.com/xiaoliu66007/p/8409864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!