difference between array and plsql table
697349Apr 21 2009 — edited Apr 21 2009TYPE array_typ IS TABLE OF VARCHAR2 (4000);
TYPE pltab_typ IS TABLE OF VARCHAR2 (4000)
INDEX BY BINARY_INTEGER;
wat is the diff between the two types of declaration?
the web site says the first one is array and the second one is a plsql table and not an array...
for your ref: http://www.orafaq.com/forum/t/5771/2/