plsql函数返回数组集合例子

Posted zyx-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了plsql函数返回数组集合例子相关的知识,希望对你有一定的参考价值。

 1 create or replace type t_test as object(
 2 id integer,
 3 rq date,
 4 mc varchar2(60)
 5 );
 6 
 7 create or replace type t_test_table as table of t_test;
 8 
 9 create or replace function f_test_array(n in number default null) return t_test_table
10 as 
11 v_test t_test_table := t_test_table();
12 begin
13 for i in 1 .. nvl(n,100) loop
14 v_test.extend();
15 v_test(v_test.count) := t_test(i,sysdate,mc||i);
16 end loop;
17 return v_test;
18 end f_test_array;
19 
20 
21 select * from table(f_test_array(10));

 

以上是关于plsql函数返回数组集合例子的主要内容,如果未能解决你的问题,请参考以下文章

如何匹配plsql中正则表达式中的列表/数组?

在 Oracle PLSQL 函数的输出过程中出现逗号问题

SQL记录-PLSQL数组

SQL记录-PLSQL集合

PLSQL集合笔记

如何在 plsql 中更新此函数?