IT运维笔记
首页
编程语言
电子书
运营商业务
数据库
运维经验
下载
>
oracle使用for循环插入10000条数据
begin for i in 1..10000 loop insert into test values (i); end loop; commit; end;