mybatis+oracle批量插入sql返回成功条数

来源:互联网 发布:新开淘宝店铺排名 编辑:程序博客网 时间:2024/06/06 06:35
mapper.xml文件
 
     insert into T_WREGIME_SQYJ
      (WRINFOID,WRTITLE,WRDETAIL)
 
     (select  
         #{item.WRINFOID,jdbcType=VARCHAR},
         #{item.WRTITLE,jdbcType=VARCHAR},
         #{item.WRDETAIL,jdbcType=VARCHAR}  
     from  dual)
原创粉丝点击