- 论坛徽章:
- 0
|
create or replace function FUNC_ASPIRE_GDZC_GETXTPTBYRQ(zcbh in varchar2, qsrq in varchar2) return varchar2 is
Result varchar2(200);
begin
declare
v_pt varchar2(200);
type pttype is table of varchar2(200) index by binary_integer;
pt_table pttype;
begin
v_pt:='(';
select
decode(bl.ftgxlxoid,
'1099102300000000003',
(select ptmc from aspire_gdzc_pt where oid = bl.ftstoid),
'1099102300000000005',
(select ZRZXMC from aspire_gdzc_zrzx where oid = bl.ftstoid),
(select zcbh from aspire_gdzc_zc where oid = bl.ftstoid)) ||','||
bl.ftbl bulk collect
into pt_table
from aspire_gdzc_ftbl bl,
aspire_gdzc_zc zc
where
bl.bftstoid = zc.oid
and bl.delflag = '0'
and zc.zcbh=zcbh;
for i in 1 .. pt_table.count loop
v_pt:= v_pt||pt_table(i) ;
end loop;
Result := v_pt;
return(Result);
end;
end FUNC_ASPIRE_GDZC_GETXTPTBYRQ;
这是我写的函数,在 v_pt:= v_pt||pt_table(i) ; 这行老是报错. |
|