Answers for "how to return a table in pl sql functions"

SQL
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
0

plsql function that return a table

create or replace type t_table as table of t_record;
/
Posted by: Guest on April-01-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language