Hi,
declare
i number;
begin
i:=0;
loop
dbms_output.put_line('i='||to_char(i));
if ( i = 2 ) then
continue;
end if;
dbms_output.put_line(' Only if i is not equal to 2 ');
end loop;
end;
When I run this block, oracle is throwing an error...
ORA-06550: line 8, column 1:
PLS-00201: identifier 'CONTINUE' must be declared
ORA-06550: line 8, column 1:
PL/SQL: Statement ignored
This feature has been added in Oracle 11, but I am using Oracle 10.2.0.1
Is there any other keyword like "CONTINUE" in 10g?
Please help me.
Thanks,
Bharath.