Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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