Can we create a temporary table with hard-coded values within a query.
466353Nov 7 2005 — edited Nov 8 2005with temp(col1,col2) as
(values (10,11),(20,21))
select * from temp
The above SQL will display two rows in DB2 (10,11 and 20,21).
We could also use this in a SQL join in DB2.
Is there anything similiar in Oracle.