Oracle
 sql >> Database >  >> RDS >> Oracle

Una procedura SQL può restituire una tabella?

Una funzione PL/SQL può restituire una tabella nidificata. A condizione che dichiariamo la tabella annidata come tipo SQL, possiamo usarla come origine di una query, utilizzando la funzione TABLE() .

Ecco un tipo e una tabella nidificata creata da esso:

SQL> create or replace type emp_dets as object (
  2  empno number,
  3  ename varchar2(30),
  4  job varchar2(20));
  5  /

Type created.

SQL> create or replace type emp_dets_nt as table of emp_dets;
  2  /

Type created.

SQL> 

Ecco una funzione che restituisce quella tabella annidata ...

create or replace function get_emp_dets (p_dno in emp.deptno%type)
    return emp_dets_nt
is
    return_value emp_dets_nt;
begin
    select emp_dets(empno, ename, job)
    bulk collect into return_value
    from emp
    where deptno = p_dno;
    return return_value;
end;
/

... ed ecco come funziona:

SQL> select * 
  2  from table(get_emp_dets(10))
  3  /

     EMPNO ENAME                          JOB
---------- ------------------------------ --------------------
      7782 CLARK                          MANAGER
      7839 KING                           PRESIDENT
      7934 MILLER                         CLERK

SQL> 

I tipi SQL ci offrono una grande quantità di funzionalità e ci consentono di creare API piuttosto sofisticate in PL/SQL. Scopri di più .