存储过程返回数组对象例子

其实就相当于返回List里面放的对象数据,定义如下

 

1.创建存储过程对象

CREATE OR REPLACE TYPE "T_ACCOUNT_MONTH"
as object(
  ACCOUNT_ID NUMBER,
  INIT_AMOUNT NUMBER,
  DEBIT_AMOUNT NUMBER,
  CREDIT_AMOUNT NUMBER
)

2.创建存数过程数组

CREATE OR REPLACE TYPE "T_ACCOUNT_MONTH_TABLE"                                         

as table of t_account_month

3.创建存储过程

create or replace function account_month(tDate IN DATE)
return t_account_month_table pipelined
as
v_account_month t_account_month;
v_date DATE;
begin
  v_date:=tDate;
  IF v_date IS NULL THEN
    v_date:=sysdate;
  END IF;
for myrow in (
        select d.ACCOUNT_ID,
               sum(decode(sign(d.create_time-trunc(v_date,'month')),-1,
                     d.debit_unvoucher + d.debit_unposted +d.debit_posted - d.CREDIT_UNVOUCHER -d.CREDIT_UNPOSTED- d.CREDIT_POSTED_D,
                     0)) INIT_AMOUNT,
               sum(decode(sign(trunc(d.create_time,'year')-trunc(sysdate,'year')),0,
                     d.debit_unposted+d.debit_posted,
                     0)) DEBIT_AMOUNT,
               sum(decode(sign(trunc(d.create_time,'year')-trunc(sysdate,'year')),0,
                     d.credit_unposted+d.credit_posted,
                     0)) CREDIT_AMOUNT
         from ACCOUNT_DAILY_VEIW d
         group by d.ACCOUNT_ID
  ) loop
v_account_month := t_account_month(
         myrow.ACCOUNT_ID,
         myrow.INIT_AMOUNT,
         myrow.DEBIT_AMOUNT,
         myrow.CREDIT_AMOUNT
);
pipe row (v_account_month);
end loop;
return;
end;

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值