Oracle中使用PLSQL怎样用循环插入多条数据?

Oracle中使用PLSQL怎样用循环插入多条数据?,第1张

使用loop循环,比如:

for item in (select a,b,c from table_a where 条件) loop

insert into table_b(a,b,c) values (item.a,item.b,item.c)

end loop

也可以使用索引表循环,以上只是一个简单的例子,需要根据你的具体情况选择循环方式。

1、采渣衫销用insert into values 语句插入一条,写很多条语句即可多条如游数据,这种主要针对于离散值以及一些基础信息的录入,如:insert into test(xh,mc) values('123','测试')

如果插入的数据有规律,可利用for、loop循环插入,主要用于批量生成测试数据

begin

for i in 1 .. 100 loop

insert into test(xh,mc) values(i||'','测试')

end loop

end 。

2、采用insert into selct from 语句来一次性插入一个集合,这种主要依据于要插入的数据源已经存储于数据库对象中,或者利用dual虚表来构造数据,经过加工后写入一个集合。

insert into test (xh,mx) select '123','测试' from dual

3、采用plsql等工具、或者oracle的imp、impdp命令来导入,这种主要用数据库与数据库之间塌升的大批量数据导入,导入的数据格式为plsql的pde、oracle的dmp等。dmp文件可使用

table_exists_action参数控制导入动作:replace替换原表,truncate清除原表数据再导入,append增量导入数据,当然impdp数据泵的导入要依赖于directory路径。

impdp 用户名/密码 dumpfile=123.dmp logfile=123.log directory=imp_dir tables=test table_exists_action=append。

4、使用excel文件直接拷贝。这种主要用于要写入的数据已是excel文件或者行列分明的其它格式文件,每一列的值和表结构相对应,可直接打开表的行级锁,把数据拷贝进入。

实现方式错了,批量移动数据应该使用Cursor,而不是像分页那样每次都查询。

每次都查询可能谈宏会导致重肆芹复数据。

正确方式应该是打开一个Cursor,循环Cursor来插含雹册入,使用计数器来控制每次COMMIT的行数:

declare

TYPE R_CURSOR IS REF CURSOR

i number

a1_cursor R_CURSOR

a1_rowA1%ROWTYPE

begin

open a1_cursor FOR

select ID, NAME from A1

i := 0

loop

fetch a1_cursor

into a1_row

exit when a1_cursor%notfound

INSERT INTO A2 VALUES a1_row

i := i + 1

if i >= 5 then

commit

i := 0

end if

end loop

close a1_cursor

commit

end


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11988902.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存