利用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
相关文章
相关标签/搜索