dbcli / litecli

CLI for SQLite Databases with auto-completion and syntax highlighting
https://litecli.com
BSD 3-Clause "New" or "Revised" License
2.09k stars 67 forks source link

Add support for NULLS FIRST and NULLS LAST in ORDER BY clauses #86

Closed slavistan closed 3 years ago

slavistan commented 4 years ago

As of SQLite Release 3.30.1 ORDER BY includes the NULLS FIRST and NULLS LAST options to express where to put NULL-rows. Usage examples of this syntax can be found here.

I'm dabbling with databases and what a joy litecli is compared to the sqlite3 shell. If I'm not mistaken, the above feature is missing from the current version of litecli (1.3.2) and would be nice to have :)

Kind Regards