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

Come utilizzare un tipo di tabella in un'istruzione SELECT FROM?

In SQL è possibile utilizzare solo il tipo di tabella definito a livello di schema (non a livello di pacchetto o procedura) e non è possibile definire la tabella index-by (array associativo) a livello di schema. Quindi, devi definire una tabella nidificata in questo modo

create type exch_row as object (
    currency_cd VARCHAR2(9),
    exch_rt_eur NUMBER,
    exch_rt_usd NUMBER);

create type exch_tbl as table of exch_row;

E poi puoi usarlo in SQL con l'operatore TABLE, ad esempio:

declare
   l_row     exch_row;
   exch_rt   exch_tbl;
begin
   l_row := exch_row('PLN', 100, 100);
   exch_rt  := exch_tbl(l_row);

   for r in (select i.*
               from item i, TABLE(exch_rt) rt
              where i.currency = rt.currency_cd) loop
      -- your code here
   end loop;
end;
/