オプション1強力な参照カーソルを返す関数を作成します。
create or replace function getCursor return refcur_pkg.refcur_t is
c_tmp refcur_pkg.refcur_t;
begin
open c_tmp for select * from StockTable;
return c_tmp;
end;
SELECT * FROM TABLE(StockPivot(getCursor()));
オプション2。カーソル式を試すこともできます。 カーソル式 。
SELECT * FROM TABLE(StockPivot(Cursor(select * from StockTable)));