1. 程式人生 > >oracle批量插入數據

oracle批量插入數據

-- har 批量 ora 定義變量 varchar2 into arch value

//---------------  建表  ---------------


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批量插入數據