plsql code error
Hello,
I need to give i and j the same values I mean both columns the same values at a time how do I do this with plsql?Below is giving error
SQL> declare i number;
2 j number;
3 begin
4 for i,j in 1 .. 10000
5 loop
6 insert into emp values(i,j);
7 end loop;
8 end;
9 /
Best regards,
Vishal