码迷,mamicode.com
首页 > 其他好文 > 详细

Mybatis批量插入写法

时间:2021-04-28 12:04:54      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:tag   col   写法   sep   rtb   int   tis   rgb   div   

 

 

 <insert id="insertBatchList">
        INSERT INTO tag  (
        `tag_name`,
        `tag_weight`,
        )
        VALUES
        <foreach collection ="list" item="tag" separator =",">
            (#{tag.tagName}, #{tag.tagWeight})
        </foreach >

 

Mybatis批量插入写法

标签:tag   col   写法   sep   rtb   int   tis   rgb   div   

原文地址:https://www.cnblogs.com/pxblog/p/14710836.html

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