当前位置:   article > 正文

Oracle同时insert多条数据_oracle insert into 多条

oracle insert into 多条

1、手动添加主键:

insert all  
		into tableName (id, name, age) values ( 1, 'name1', 20)
  		into tableName (id, name, age) values ( 2, 'name2', 21)
		into tableName (id, name, age) values ( 3, 'name3', 18)
select 1 from dual
  • 1
  • 2
  • 3
  • 4
  • 5

结尾处 “select 1 from dual” 不能缺少。

2、通过序列与触发器添加主键:
1)、创建表:

create table tableName(
		id Number(10) not null,
		name Varchar2(200),
		age Number(14,2),
		constraint pk_tableName_id PRIMARY KEY (id) --- 主键
)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

2)、创建序列:

create sequence seq_tableName 
			start with 1     ----- 开始值
			maxvalue 99999999999   -----最大值
			increment by 1;   -------每次新增大小值
  • 1
  • 2
  • 3
  • 4

3)、创建触发器:

create or replace trigger tr_tableName
before insert on tableName
for each row    ----对表的每一行触发器执行一次
begin
  select seq_tableName.nextval into :new.id from dual;
end;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

seq_tableName 为序列, id 为tableName的主键id

4)、同时插入多条数据,主键自己生成:

insert all  
		into tableName (name, age) values ( 'name1', 20)
  		into tableName (name, age) values ( 'name2', 21)
		into tableName (name, age) values ( 'name3', 18)
select 1 from dual
  • 1
  • 2
  • 3
  • 4
  • 5

5)、在MyBatis中使用:

<insert id="addList">
    insert all
    <foreach collection="list" index="index" item="entity" >
        into t_relation_party(
        		name,
        		age) 
        values(
        		#{entity.name},
        		#{entity.age})
    </foreach>
    select 1 from dual
</insert>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

insert all语句里不能直接使用seq_test_insert.nextval,因为即便每个into语句里都加上seq_test_insert.nextval也不会获得多个值。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/583372
推荐阅读
相关标签
  

闽ICP备14008679号