Mybatis之批量插入

本文介绍了一种使用MyBatis框架进行EMP表数据批量插入的方法。通过<insert>标签结合<foreach>循环遍历List集合,实现了对EMP表的EMPNO, ENAME等字段的按需插入。每条插入语句会根据提供的对象属性是否存在来决定是否插入相应的字段及值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


<insert id="insertEmpSelectiveBatch" parameterType="java.util.List" >
begin
<foreach collection="list" item="item" index="index" separator=";" >
insert into EMP
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="item.empno != null">
EMPNO,
</if>
<if test="item.ename != null">
ENAME,
</if>
<if test="item.job != null">
JOB,
</if>
<if test="item.mgr != null">
MGR,
</if>
<if test="item.hiredate != null">
HIREDATE,
</if>
<if test="item.sal != null">
SAL,
</if>
<if test="item.comm != null">
COMM,
</if>
<if test="item.deptno != null">
DEPTNO,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="item.empno != null">
#{item.empno,jdbcType=DECIMAL},
</if>
<if test="item.ename != null">
#{item.ename,jdbcType=VARCHAR},
</if>
<if test="item.job != null">
#{item.job,jdbcType=VARCHAR},
</if>
<if test="item.mgr != null">
#{item.mgr,jdbcType=DECIMAL},
</if>
<if test="item.hiredate != null">
#{item.hiredate,jdbcType=TIMESTAMP},
</if>
<if test="item.sal != null">
#{item.sal,jdbcType=DECIMAL},
</if>
<if test="item.comm != null">
#{item.comm,jdbcType=DECIMAL},
</if>
<if test="item.deptno != null">
#{item.deptno,jdbcType=DECIMAL},
</if>
</trim>
</foreach>
;commit;end;
</insert>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值