oracle函数返回结果集⼀.⽤⾃定义类型实现
1、创建表对象类型。
在Oracle中想要返回表对象,必须⾃定义⼀个表类型,如下所⽰:
Sql代码
1. create or replace type type_table is table of number;
上⾯的类型定义好后,在function使⽤可⽤返回⼀列的表,稍后介绍返回多列的
2、创建函数
在函数的定义中,可以使⽤管道化表函数和普通的⽅式,下⾯提供两种使⽤⽅式的代码:
1)、管道化表函数⽅式:
Sql代码
1. create or replace function f_pipe
2. (s number)
3. return type_table pipelined
4. as
5. begin
6.    for i in 1..s loop
7.    pipe row(i);
8. end loop;
9. return;
10. end f_pipe;
注意:管道的⽅式必须使⽤空的return表⽰结束.
调⽤函数的⽅式如下:
2)、普通的⽅式:
Sql代码
1. create or replace function f_normal
2. (s number)
3. return type_table
4. as
5.    rs type_table:= type_table();
6. begin
7.    for i in 1..s loop
8.        rs.extend;
9.        unt) := i;
10.    end loop;
11. return rs;
12. end f_normal;
调⽤⽅式如下:
Sql代码
1. select * from table(f_normal(5));
如果需要多列的话,需要先定义⼀个对象类型。可以把对象类型替换上⾯语句中的number;
Sql代码
1. create or replace type type_row as object
2. (
3.  id int,
4.  name varchar2(50)
5. )
修改表对象类型的定义语句如下:
Sql代码
1. create or replace type type_table is table of type_row;
1)、管道化表函数⽅式:
Sql代码
1. create or replace function f_pipe(s number)
2. return type_table pipelined
3. as
4.    v_type_row type_row;
5. begin
6. for i in 1..s loop
7.    v_type_row :=  type_row(i,to_char(i*i));
8.    pipe  row(v_type_row);
9. end loop;
10. return;
11. end f_pipe;
测试:select * from table(f_pipe(5));
2)、普通的⽅式:
Sql代码
1. create or replace function f_normal(s number)
2. return type_table
3. as
4.    rs type_table:= type_table();
5. begin
6.    for i in 1..s loop
7.        rs.extend;
8.        unt) := type_unt,'name'||to_unt));
9.    --unt) := type_row(NULL,NULL);
10.
11.        --unt).name := unt).name || 'xxxx';
12.    end loop;
13. return rs;
14. end f_normal;
测试:select * from table(f_normal(5));
其他代码段
把权限(和)值拆分成多条记录
Sql代码
1. create or replace type type_table_number is table of number;
3. create or replace function f_right_table(
4.    rights number
5. )
6.    --⾃定义table类型 --pipelined 管道关键字
7.    return type_table_number pipelined
8. as
9. begin
10.    --调⽤⽅法:select column_value as right from table(f_right_table(power(2,15)*2-2));
11.    for i in 1..15 loop
12.      IF bitand(rights,power(2,i))=power(2,i) THEN
13.          pipe row(power(2,i)); --pipe row 特定写法,输出记录
14.      END IF;
15.    end loop;
16. return;
17. end f_right_table;
⼀种遍历数据的⽅法,
只是演⽰myrow,myrow 就相当于⼀个临时变量
Java代码
1. for myrow in (
2.      select 2 as right from dual where bitand(rights,2)=2
3.      union
4.      select 4 as right from dual where bitand(rights,4)=4
5. ) loop
6.      rs.extend;
7.      unt) := myrow.right;
8. end loop;
⼆.其他实现
包⾥⾯⽤⼀个存储过程,返回游标,就可以了
>包的定义
1) 包头
Sql代码
1. create or replace package mypk
2. as
3. type t_cursor is ref cursor;
4. procedure proc(name varchar2,c out t_cursor,a number);
5. end;
2) 包体
Sql代码
1. create or replace package body mypk
2. as
3. procedure proc(name varchar2,c out t_cursor,a number)
4. as
5. begin
6. open c for select * from test where id=a and name=name;
7. end proc;
8. end;
这个⽅案的局限性太⼤,⽆法实现select * from function()的要求
Sql代码
1. declare
2.    cur_out_arg mypk.t_cursor;
3.    rec_arg test%rowtype;
4. begin
5.    mypk.proc('abc',cur_out_arg,3);
6.  --open cur_out_arg;
7.    loop
8.      --提取⼀⾏数据到rec_arg
9.      fetch cur_out_arg into rec_arg;
10.      --判读是否提取到值,没取到值就退出
11.      --取到值cur_out_arg%notfound 是false
12.      --取不到值cur_out_arg%notfound 是true
13.      exit when cur_out_arg%notfound;
14.      dbms_output.put_line(rec_arg.id||'-'||rec_arg.name);
15.    end loop;
16.  --关闭游标
17.  close cur_out_arg;
18. end;
⾃⼰实例:
实现效果:通过函数返回结果集表数据
create type row_type as object(v_date varchar2(50) );--定义⾏对象
create type table_type as table of row_type; --定义表对象
-
-建⽴函数
create or replace function F_TOOLS_GET_DAYS(
V_DATE IN VARCHAR2
)
return table_type pipelined
is
v row_type;--定义v为⾏对象类型
begin
for thisrow in (select data_date from (select '20100425' as data_date from dual union alltabletotal函数
select '20100426' from dual
)a
)
loop
v := row_type(thisrow.data_date);
pipe row (v);
end loop;
return;
end;
--使⽤函数
select v_date from table(F_TOOLS_GET_DAYS('201002'));

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。