Is it possible to include the DUAL table in a join query ?
Can anyone give me an example which includes the SYSTIMESTAMP
from dual table.
One common use (for me) is to use it to make inline views to join on...
SELECT
filter.Title,
book.*
FROM
(
SELECT 'Red Riding Hood' AS title FROM dual
UNION ALL
SELECT 'Snow White' AS title FROM dual
)
AS filter
INNER JOIN
book
ON book.title = filter.title
[This is a deliberately trivialised example.]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With