Reference elements in varray : varray « PL SQL « Oracle PL / SQL






Reference elements in varray

    
SQL>
SQL> create table department
  2  ( dept_id       number(2),
  3    dept_name     varchar2(14),
  4    no_of_emps    varchar2(13)
  5  )
  6  /

Table created.

SQL>
SQL> INSERT INTO department VALUES (10, 'ACCOUNTING', 'NEW YORK');

1 row created.

SQL> INSERT INTO department VALUES (20, 'RESEARCH',   'DALLAS');

1 row created.

SQL> INSERT INTO department VALUES (30, 'SALES',      'CHICAGO');

1 row created.

SQL> INSERT INTO department VALUES (40, 'OPERATIONS', 'BOSTON');

1 row created.

SQL>
SQL>
SQL> SET ECHO ON
SQL> SET SERVEROUTPUT ON
SQL>
SQL> DECLARE
  2      CURSOR all_depts IS SELECT * FROM department ORDER BY dept_name;
  3
  4      TYPE dept_array IS VARRAY(100) OF department%ROWTYPE;
  5
  6      depts dept_array;
  7      inx1 PLS_INTEGER;
  8      inx2 PLS_INTEGER;
  9  BEGIN
 10      inx1 := 0;
 11
 12      depts := dept_array ();
 13
 14      FOR dept IN all_depts LOOP
 15          inx1 := inx1 + 1;
 16          depts.extend();
 17          depts(inx1).dept_id := dept.dept_id;
 18          depts(inx1).dept_name := dept.dept_name;
 19          depts(inx1).no_of_emps := dept.no_of_emps;
 20      END LOOP;
 21
 22      FOR inx2 IN 1..depts.count LOOP
 23          DBMS_OUTPUT.PUT_LINE (
 24              depts(inx2).dept_id ||
 25              ' ' || depts(inx2).dept_name);
 26      END LOOP;
 27  END;
 28  /
10 ACCOUNTING
40 OPERATIONS
20 RESEARCH
30 SALES

PL/SQL procedure successfully completed.

SQL>
SQL> drop table department;

Table dropped.

SQL>
SQL> --

   
    
    
  








Related examples in the same category

1.Varray constructors.
2.legal and illegal varray assignments.
3.TYPE Strings IS VARRAY(5) OF VARCHAR2(10)
4.Create a varray based on user defined type
5.Store pre-defined constants in VARRAY
6.Creating and Using VARRAYs
7.Query a stored varray.
8.VARRAY of VARCHAR2 and Varray of number
9.Table of numbers and varray of numbers
10.Initialize the array and create two entries using the constructor
11.assignments to varray elements, and the ORA-6532 and ORA-6533 errors.
12.ORA-06533: Subscript beyond count
13.Compare two varray variables
14.Constructs a two varrays and one nested table type in the database
15.Control varray index with if statement
16.Create type prices with a varray of number
17.Declare the varray with null values.
18.Declaring a VARRAY of scalar variable
19.Define a varray of integer with 3 rows
20.Define a varray of twelve strings.
21.Define a varray with a null element constructor and extends it one element at a time by a formula
22.Define a varray with a null element constructor and extends it one element at a time.
23.Define a varray with a three element constructor of null elements and attempt to populate it beyond three elements.
24.Define a varray with a three element constructor of null elements.
25.Hard code value in varray and use for loop to insert them to a table
26.Nested varray
27.Reference varray.count in for loop
28.Store 12 months in varray of string
29.Use table() function to display varray type column
30.exceeded maximum VARRAY limit
31.Assign values to subscripted members of the varray.
32.Check the size of a varray
33.Declare an array initialized as a no-element collection.
34.Extend with null element to the maximum limit size.
35.Initialization and assignment with a numeric index value to an associative array.
36.Initialization and assignment with a unique string index value to an associative array.
37.Associative array example
38.Assigns a value to the indexed value.
39.Avoid traversing an associative array where no elements are initialized.
40.Subscript index values begin at 1, not 0