欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Gbase 8s 批量新增 mybatis

程序员文章站 2022-07-01 08:01:12
...
    <!-- 批量插入用户, foreach 循环操作, 同样不能使用text/byte/clob/blob字段 -->
    <insert id="foreachaddStudent" useGeneratedKeys="true">
        <foreach collection="list" item="item">
            insert into student(username,usertext,userphoto) values
            (#{item.userName},#{item.userText},#{item.userPhoto});
        </foreach>
    </insert>

 

相关标签: Gbase