Thread: pl/sql block
View Single Post
  #1 (permalink)  
Old 10-16-2007, 05:09 AM
kvijay6aa kvijay6aa is offline
Junior Member
 
Join Date: Oct 2007
Posts: 2
kvijay6aa is on a distinguished road
Default ANY dialect question:

pl/sql block


What will be the result of below PL/SQL block? State the reason for that result.



Begin

For j in 4403201000 .. 4403202000

Loop

If mod (j, 100) = 0 then

Dbms_output.put_line (j);

End if;

End loop;

End;
Reply With Quote

ANSWER(S):