Oracle中函数如何返回结果集

Posted fery

tags:

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

Oracle中,用函数返回结果集有时候要用到,下面是demo:

1
2
3
4
5
6
7
create or replace type t_test as object
(
id integer,
create_time date,
object_name varchar2(60)
);
create or replace type t_test_table as table of t_test;

1.用数组的方式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
create or replace function f_test(n in number default null)
return t_test_table as
v_test t_test_table := t_test_table();
begin
for i in 1 .. n loop
v_test.extend();
v_test(v_test.count) := t_test(i, sysdate, ‘name‘ || i);
end loop;
return v_test;
end f_test;
/
 
SQL> select * from table(f_test(5));
ID CREATE_TIME OBJECT_NAME
-------- -------------- -------------
1 07-4月 -15 name1
2 07-4月 -15 name2
3 07-4月 -15 name3
4 07-4月 -15 name4
5 07-4月 -15 name5

2.用管道函数 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
create or replace function f_test_pipe(n in number default null)
return t_test_table
PIPELINED as
v_test t_test_table := t_test_table();
begin
for i in 1 .. nvl(n, 100) loop
pipe row(t_test(i, sysdate, ‘name‘ || i));
end loop;
return;
end f_test_pipe;
/
 
 
SQL> select * from table(f_test_pipe(5));
ID CREATE_TIME OBJECT_NAME
---------- -------------- ----------------
1 07-4月 -15 mc1
2 07-4月 -15 mc2
3 07-4月 -15 mc3
4 07-4月 -15 mc4
5 07-4月 -15 mc5

以上是关于Oracle中函数如何返回结果集的主要内容,如果未能解决你的问题,请参考以下文章

C#中如何把Oracle数据库查询的结果集返回

如何oracle function 返回结果集

如何php调用oracle存储过程返回的是一个结果集,该怎么从php页面中吧数据循环输出呀

oracle 如何返回多条记录

oracle函数返回varchars数组,在c#中

在oracle里,多条返回结果,如何只能返回一条