Saturday, 20 September 2014

Collection Methods

are  EXISTS,COUNTLIMITFIRSTLASTPRIORNEXTEXTENDTRIM, and DELETE.
We cannot use collection methods in a SQL statement.

FIRST AND LAST[example]

declare
        type months is varray(13) of VARCHAR2(20);
        mon months;
    begin
        mon:=months('jan','feb','mar','apr','may','jun','jul');
        for i in mon.first..mon.last
       loop
           DBMS_OUTPUT.put_line(mon(i));
       end loop;
   end;

OUTPUT

jan
feb
mar
apr
may
jun
jul

No comments:

Post a Comment