Thread
:
pl/sql block
View Single Post
#
1
(
permalink
)
10-16-2007, 05:09 AM
kvijay6aa
Junior Member
Join Date: Oct 2007
Posts: 2
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;
kvijay6aa
View Public Profile
Send a private message to kvijay6aa
Find all posts by kvijay6aa
ANSWER(S):