Hello,
I want to skip some rows in a for loop, such as:
for i in (select col_1, col2 from tab_a)
loop
if i.col_1 ='A' then
continue;
end if;
end loop;
I want to use "continue" to skip a row.
I used "continue" and "next", and none of them works.
What is the key word for "continue"?
Thanks
I want to skip some rows in a for loop, such as:
for i in (select col_1, col2 from tab_a)
loop
if i.col_1 ='A' then
continue;
end if;
end loop;
I want to use "continue" to skip a row.
I used "continue" and "next", and none of them works.
What is the key word for "continue"?
Thanks