oracle批量插入数据
Posted For_elegant
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle批量插入数据相关的知识,希望对你有一定的参考价值。
//--------------- 建表 ---------------
create table Student_info
(
student_id VARCHAR2(12)
)
//--------------- 插入数据 ---------------
declare
i integer; --定义变量
begin
i := 1;
loop
/* 插入数据 */
insert into student_info (student_id)
values
(TO_CHAR(‘99999999‘ + i));
/* 参数递增 */
i := i + 1;
/* 停止条件 */
exit when i > 2000;
end loop;
commit;
end;
以上是关于oracle批量插入数据的主要内容,如果未能解决你的问题,请参考以下文章