1. 程式人生 > >利用oracle儲存過程向資料庫批量插入資料

利用oracle儲存過程向資料庫批量插入資料

create or replace procedure test is
begin
  for i in 1 ..100 loop
    insert into 表名(id,name) values(i, sysdate);
    end loop;
end test;

BEGIN test(); END;

drop procedure test