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

Dichiarazione SQL per utilizzare l'elenco di valori predefiniti come tabella SQL

Puoi usare con costruzione

with x as (
  select 1 as v from dual
  union all
  select 2 from dual
  union all
  select 10 from dual
)

select *
  from x, some_table
 where x.v not in some_table.value -- <- or whatever condition(s) required