SELECT without table
We can use SELECT event without tables to use SQLite as bloated calculator or to demonstrate some of the functions available.
SELECT 19 + 23
$ sqlite3 < examples/add.sql
42
SELECT 'Hello World'
$ sqlite3 < examples/text.sql
Hello World