3.6 KiB
3.6 KiB
Summary
**No review yet**Minimized query
BEGIN DEFERRED TRANSACTION;
CREATE TABLE t61(a);
CREATE TABLE t62(b);
INSERT INTO t61 VALUES(json_array(like('*111', 111), 111));
INSERT INTO t62 VALUES(222);
SELECT a FROM t61 WHERE 0 UNION ALL SELECT b FROM t62;
SELECT a FROM t61 UNION SELECT b FROM t62 WHERE 0;
SELECT a FROM t61 WHERE 0 UNION SELECT b FROM t62;
COMMIT;
SELECT COUNT(*) FROM t61;
SELECT COUNT(*) FILTER (WHERE a IS NOT NULL), SUM(rowid) FILTER (WHERE a > 0), COUNT(*) FILTER (WHERE 1=0), COUNT(*) FILTER (WHERE 1=1), COUNT(*) FILTER (WHERE NULL), AVG(a) FILTER (WHERE a > 0 AND a < 100), COUNT(*) FILTER (WHERE typeof(a) = "text") FROM t61;
SELECT AVG(b) FROM t62;
VACUUM;
SELECT a FROM t61 INTERSECT SELECT a FROM (SELECT * FROM t61) AS sub;
SELECT COUNT(*) FROM t61;
ALTER TABLE t61 ADD COLUMN extra_8289 SMALLINT DEFAULT (abs(random()) % 1000);
ALTER TABLE t61 RENAME COLUMN a TO a_r2610;
SELECT COUNT(*) FILTER (WHERE a IS NOT NULL), SUM(rowid) FILTER (WHERE a > 0), COUNT(*) FILTER (WHERE 1=0), COUNT(*) FILTER (WHERE 1=1), COUNT(*) FILTER (WHERE NULL), AVG(a) FILTER (WHERE a > 0 AND a < 100), COUNT(*) FILTER (WHERE typeof(a) = "text") FROM t61;
Actual output
Usage: /home/test/sqlite3-src/build/sqlite3 [OPTIONS] FILENAME [SQL]
FILENAME is the name of an SQLite database. A new database is created
if the file does not previously exist.
OPTIONS include:
-append append the database to the end of the file
-ascii set output mode to 'ascii'
-bail stop after hitting an error
-batch force batch I/O
-box set output mode to 'box'
-column set output mode to 'column'
-cmd COMMAND run "COMMAND" before reading stdin
-csv set output mode to 'csv'
-deserialize open the database using sqlite3_deserialize()
-echo print commands before execution
-init FILENAME read/process named file
-[no]header turn headers on or off
-help show this message
-html set output mode to HTML
-interactive force interactive I/O
-json set output mode to 'json'
-line set output mode to 'line'
-list set output mode to 'list'
-lookaside SIZE N use N entries of SZ bytes for lookaside memory
-markdown set output mode to 'markdown'
-maxsize N maximum size for a --deserialize database
-memtrace trace all memory allocations and deallocations
-mmap N default mmap size set to N
-newline SEP set output row separator. Default: '\n'
-nofollow refuse to open symbolic links to database files
-nonce STRING set the safe-mode escape nonce
-nullvalue TEXT set text string for NULL values. Default ''
-pagecache SIZE N use N slots of SZ bytes each for page cache memory
-quote set output mode to 'quote'
-readonly open the database read-only
-safe enable safe-mode
-separator SEP set output column separator. Default: '|'
-stats print memory stats before each finalize
-table set output mode to 'table'
-tabs set output mode to 'tabs'
-version show SQLite version
-vfs NAME use NAME as the default VFS
Expectation
Flag
-help