mybatis批量插入
Posted 下饭
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis批量插入相关的知识,希望对你有一定的参考价值。
<insert id="insertBatch" parameterType="java.util.List">
insert into xg_t_ss_rc_wj(
wid,
fsrq,
insert_time,
last_changed,
status
)
values
<foreach collection="list" item="item" index="index" separator=",">
(
#{item.wid},
#{item.fsrq},
now(),
now(),
1
)
</foreach>
</insert>
以上是关于mybatis批量插入的主要内容,如果未能解决你的问题,请参考以下文章