Sayantan's Blog On Oracle

Sayantan's blogs on Oracle

Learn Oracle with Sayantan

COLLECTIONS

Oracle Collection in PLSQL

Oracle Collection in PLSQL

Examples for Oracle Collection In PLSQL : Associative Arrays example:

Associative Arrays In Blocks:

--Examples for Oracle Collection In PLSQL : Associative Arrays In Blocks:

set serveroutput on;
declare
  type t_empid is table of employees.employee_id%type index 

Collections In Oracle

Collections In Oracle

DEFINITION:

What are collections in Oracle?

A collection is a homogeneous single dimensional structure. It constitutes an ordered set of elements of similar type.

Since it's homogeneous structure all the elements are of same type. These types …