On Tue, Dec 12, 2017 at 12:34 PM, Mark Wagner <[email protected]> wrote:
> My reading of https://sqlite.org/syntax/select-core.html makes me think > that I should be able to issue something like values('foo'); and get a row > with a single column whose value is 'foo'. But I get a syntax error. > > Probably obvious to the right people but what am I missing? > > sqlite> values('foo', 'bar'); > Error: near "values": syntax error > Works for me too: $ sqlite3 SQLite version 3.14.2 2016-09-12 18:50:49 Enter ".help" for usage hints. Connected to a transient in-memory database. Use ".open FILENAME" to reopen on a persistent database. sqlite> values(1,2) ...> ; 1|2 sqlite> values('foo','bar'); foo|bar sqlite> _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

