Answers for "pl sql function to return data from a table"

SQL
0

plsql function that return a table

create or replace function return_table return t_table as
  v_ret   t_table;
begin

 --
 -- Call constructor to create the returned
 -- variable:
 --
    v_ret  := t_table();

 --
 -- Add one record after another to the returned table.
 -- Note: the »table« must be extended before adding
 -- another record:
 --
    v_ret.extend; v_ret(v_ret.count) := t_record(1, 'one'  );
    v_ret.extend; v_ret(v_ret.count) := t_record(2, 'two'  );
    v_ret.extend; v_ret(v_ret.count) := t_record(3, 'three');

 --
 -- Return the record:
 --
    return v_ret;

end return_table;
/
Posted by: Guest on April-01-2020
0

plsql function that return a table

create or replace type t_record as object (
  i number,
  n varchar2(30)
);
/
Posted by: Guest on April-01-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language