mybatis oracle批量插入

<insert id="insertbatchinfotoemploees" parameterType="java.util.List">

     insert into INFOTOEMPLOEE

        select INFO_EMPLOEES.NEXTVAL,A.* from( <!--INFO_EMPLOEES为自增序列-->

        <foreach collection="list" item="item" index="index"

            separator="UNION">

            SELECT

            #{item.infoid}, #{item.empoyessid},

    #{item.infostate}

            from dual

             </foreach>

        ) A

 </insert>


mybatis oracle批量插入,布布扣,bubuko.com

mybatis oracle批量插入

上一篇:oracle11g 数据库导出报“ EXP-00003: 未找到段 (0,0) 的存储定义”错误的解决方案


下一篇:SQL Server2008R的安装