批量插入
可以判断字段是否为空,再进行插入.
插入的字段,可以根据传入的对象值进行判断.
<insert id="batchInsert" parameterType="java.util.List">
insert into tbl_integral_youzan_coupon_verify_logs (
<foreach item="log" collection="logs" index="index" open="(" separator="," close=")">
<if test="index == 0">
<if test="log.batchNo != null" >
batch_no,
</if>
is_deleted, version, channel
)
</if>
</foreach>
values
<foreach collection="logs" item="log" index="index" separator=",">
(
<if test="log.batchNo != null">
#{log.batchNo,jdbcType=VARCHAR},
</if>
0,1, #{log.channel}
)
</foreach>
</insert>
mapper.xml
int batchInsert(@Param("logs")List<IntegralYouzanCouponVerifyLogs> logs);
这篇博客探讨了如何在数据库操作中实现批量插入,并根据字段值进行条件判断。通过示例XML映射文件,展示了如何在MyBatis中处理空值和不同字段的插入,确保数据的完整性和准确性。内容涵盖了批量数据处理和对象值映射的关键点。
905

被折叠的 条评论
为什么被折叠?



