bulk fetchingthe illustration below shows that


Bulk Fetching

The illustration below shows that you can bulk-fetch from a cursor into one or more collections:

DECLARE

TYPE NameTab IS TABLE OF emp.ename%TYPE;

TYPE SalTab IS TABLE OF emp.sal%TYPE;

names NameTab;

sals SalTab;

CURSOR c1 IS SELECT ename, sal FROM emp WHERE sal > 1000;

BEGIN

OPEN c1;

FETCH c1 BULK COLLECT INTO names, sals;

...

END;

Request for Solution File

Ask an Expert for Answer!!
PL-SQL Programming: bulk fetchingthe illustration below shows that
Reference No:- TGS0172669

Expected delivery within 24 Hours