I'm searching for the Firebird equivalent of:
SELECT 'abc' AS abc, 123 AS def, '20110101' AS dt
Whenever I do
SELECT 'whatever' as xxx 
I get an error message.
Firebird, like Oracle, requires a table for a SELECT.
Usually, RDB$DATABASE is used for this purpose:
SELECT  'abc' AS abc, 123 AS def, '20110101' AS dt
FROM    RDB$DATABASE
                        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