Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

difference between array and plsql table

697349Apr 21 2009 — edited Apr 21 2009
TYPE 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/
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 19 2009
Added on Apr 21 2009
4 comments
1,380 views