MyBatis中对List 对象List的批处理插入操作


        
            select seq_app_addresslist.nextval from dual
        

        insert into appuser.ADDRESS_POSITION_BACKUP
        (row_id,pos_id,pos_name,create_date,update_date)
                     open="(" close=")">
            select
            #{p1},#{pop.ROLE_ID,jdbcType=VARCHAR},#{pop.ROLE_NAME,jdbcType=VARCHAR},
            sysdate,sysdate
            from dual
        

    

参照此篇文章 http://ask.csdn.net/questions/155651
这篇文章也不错 http://blog.csdn.net/moneyshi/article/details/22807239

你可能感兴趣的:(MyBatis中对List 对象List的批处理插入操作)