存储过程插入数据
编写存储过程,使用insert into 插入数据values的 第一个值是唯一标识(纯数字), 要插入大概1000条数据。 求助 求助 导入excel 在存过里面,去循环,设置变量,变量为纯数字,从1开始,到1000,循环就可以了。 循环设置吧 create or replace procedure test(i in number) asbegin
while i < 1000 LOOP
begin
insert into 插入数据
i:= i + 1;
end;
end LOOP;
end test; 设置循环 循环 在存过里面,去循环,设置变量,变量为纯数字,从1开始,到1000,循环就可以了。 ;P我用Excel 多谢各位大佬~
页:
[1]