If you can, give same example.
my record,table of record and function which return it.
type statisticREC is RECORD
(
FIO_ varchar2(20),
value_ number
);
type statisticMAS is table of statisticREC INDEX by binary_integer;
function Get_statistic return statisticMAS;