How to run a select without table?
Sometimes you want to get some system variable like CURRENT_TIMESTAMP or result of CAST or GEN_ID function, and you don't have a table to select from. Some other database systems support selecting without a table:
select current_timestamp;
and other's have a dummy 1-row table, like Oracle's DUAL:
select current_timestamp from DUAL;
Firebird uses the same approach. You can use the RDB$DATABASE which is a single-row table, and part of each database's metadata:
select current_timestamp from RDB$DATABASE;
Do you find this FAQ incorrect or incomplete? Please e-mail us what
needs to be changed. To ensure quality, each change is checked by our editors (and often tested on live Firebird
databases), before it enters the main FAQ database. If you desire so, the
changes will be credited to your name. To learn more, visit our add content page.
All contents are copyright © 2007-2024 FirebirdFAQ.org unless otherwise stated in the text.