Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SQL> set serveroutput on
SQL> declare
2 a number(10);
3 cursor c1 is
4 select empno from emp;
5 begin
6 for i in c1 loop
7 a:=i.empno;
8 dbms_output.put_line('Value of a is = '||a);
9 end loop;
10 end;
11 /
Value of a is = 1
Value of a is = 10
Value of a is = 20
Value of a is = 5555
Value of a is = 7521
Value of a is = 7566
Value of a is = 7654
Value of a is = 7698
Value of a is = 7782
Value of a is = 7788
Value of a is = 7839
Value of a is = 7844
Value of a is = 7876
Value of a is = 7899
Value of a is = 7900
Value of a is = 7902
Value of a is = 7934
PL/SQL procedure successfully completed.