Cursor In Oracle .What is Cursor?
it is a pointer to this context area. Oracle creates context area for processing an SQL statement which contains all information about the statement.
Tuesday, August 28, 2012
even or odd Numbers
declare
num number(5);
begin
num:=#
if num mod 2 =0 then
dbms_output.put_line('Accepted Number '||num||' is even');
else
dbms_output.put_line('Accepted Number '||num||' is odd');
end if;
end;
0 comments:
Post a Comment