oracle动态二维数组

来源:互联网 发布:免费二级备案域名申请 编辑:程序博客网 时间:2024/04/29 08:27

type array1 is table of VARCHAR2(32767) index by pls_integer;--定义一维数组
type array2 is table of array1 index by pls_integer;--定义二维数组