Some database management systems, including SQLite, allow us to use the VALUES
keyword as a stand alone SQL statement. So we can use VALUES
to return a constant table, usually with less code than would be required if we were to use the SELECT
statement.
The following examples demonstrate how.
Continue reading