herrfugbaum / qsv

Process CSV and TSV files with SQL.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Poll: SQL Queries

herrfugbaum opened this issue · comments

Which SQL Query do you want to see implemented next?




Note: If you want to contribute, the SQL parser q is located in a second repository.
It's based on chevrotrain and follows their tutorial.

The ORDER BY clause is already implemented in qsv and q 1, 2, 3 but it lacks support for multiple columns.
So it's possible to query like

SELECT * FROM table ORDER BY name

or

SELECT * FROM table ORDER BY name DESC

but not like

SELECT * FROM table ORDER BY name DESC, age

LIMIT is implemented with #7