oracle Insert 一次插入多条记录

Posted powerio

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle Insert 一次插入多条记录相关的知识,希望对你有一定的参考价值。

oracle Insert 一次插入多条记录有两种方法:

1)Insert All Into table_name values ...

insert all
into table_name values(111,122)
into table_name values(222,222)
select 1 from dual;

 

2)Insert Into table_name select from

insert into table1_name select t1.column_name,111 from table2_name  t1 
where t1.column=1 

 

以上是关于oracle Insert 一次插入多条记录的主要内容,如果未能解决你的问题,请参考以下文章

如何在oracle数据表中一次性插入多条记录?

如何在oracle数据表中一次性插入多条记录?

用insert into 怎么添加多条记录

Oracle中以insert values的形式同时插入多条记录

sql 一次插入多条记录

Oracle中如何用一条insert into 语句插入多条数据 如: insert into 表 values(多条数据)????????