i have a cursor.
select name from person
open cursor
loop
fetch cursor into v_name
exit when cursor%notfound
there are afew condition check here.
is it possible that if one condition fails straight away procceed to next record instead of
finish all the check?
if v_name='ABC' then
next record;
end if;
end loop
close cursor
select name from person
open cursor
loop
fetch cursor into v_name
exit when cursor%notfound
there are afew condition check here.
is it possible that if one condition fails straight away procceed to next record instead of
finish all the check?
if v_name='ABC' then
next record;
end if;
end loop
close cursor