利用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
相關文章
相關標籤/搜索