The DUMMY system table is provided as a table that always has exactly one row.
This can be useful for extracting information from the database, as in the following example that gets the current user ID and the current date from the database
SELECT USER, today(*) FROM SYS.DUMMY
CREATE TABLE iq_dummy (dummy_col INT NOT NULL);
SELECT NOW() FROM iq_dummy;