oracle数据库,mybatise批量插入数据


以下是在xml中配置:



  insert into sys_province (PROVINCE_ID,PROVINCE_NAME,BIG_AREA)
  
     
     (select  
#{item.provinceId},#{item.provinceName},#{item.bigArea}
      from dual)
   


经过本人的实验可行。

你可能感兴趣的:(mybatis)