For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Hi Team,
I need to append records into collection variable;
for i in 1..10 loop
select i bulk collect into collection_variable from dual;
end loop;
current result would be: storing only 10 record.
But required output : i need to store all records.