Oracle
 sql >> Datenbank >  >> RDS >> Oracle

sqlplus - Verwendung einer Bindungsvariablen in der IN-Klausel

Ich würde die other_table.id speichern in einer PL/SQL-Tabelle und verweisen Sie anschließend in der Abfrage auf diese Tabelle:

type t_id_table is table OF other_table.id%type index by binary_integer;
v_table t_id_table;

-- fill the table
select id
bulk collect into v_table
from other_table 
where abc in ('&val1','&val2','&val3');     

-- then at a later stage...    

select *
from some_table st
,    table(cast(v_table AS t_id_table)) idt
where st.id = idt.id;