Re: [sqlite] Order of rows in a VALUES select expression

2014-01-30 Thread Scott Robison
I am not in front of a sqlite equipped system at the moment, but wouldn't something like this probably work? select * from (values ...) order by ... On Thu, Jan 30, 2014 at 1:28 PM, Zsbán Ambrus wrote: > The future release sqlite 3.8.3 adds VALUES statements as a shortcut > form of SELECT stat

[sqlite] Order of rows in a VALUES select expression

2014-01-30 Thread Zsbán Ambrus
The future release sqlite 3.8.3 adds VALUES statements as a shortcut form of SELECT statements. This shortcut simply creates a results set made of any number of rows, any number of (unnamed) columns in each, and all the values given by separate explicit expressions. My question is whether sqlite