sboy
0
Q:

Write a PL/SQL to print even numbers upto 100.

Declare
NUM1 number:=0;
begin
loop
NUM1 := NUM1+2;
dbms_output.put_line (NUM1||',');
exit when NUM1=100;
end loop;
end;
0

New to Communities?

Join the community