Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> PL/SQL Arrays - 2 dimensional?
Take the following:
create or replace package x
is
type array is table of varchar2(2000) index by binary_integer;
procedure p;
end;
/
I am looking for a way to define another data type which allows me to have an array of arrays if that makes sense.
Possible?
-- jeremyReceived on Sat Feb 15 2003 - 10:29:43 CST
![]() |
![]() |