5 unstable releases

Uses old Rust 2015

0.5.0 Sep 13, 2018
0.4.1 Sep 4, 2018
0.4.0 Sep 2, 2018
0.3.1 Jul 3, 2018
0.3.0 Jun 27, 2018

#2556 in Database interfaces


Used in csv-query-cli

MIT license

10KB
241 lines

CSV Query

Build Status

This is based on the idea of rows but I want to limit it only to a fast CSV parser with the embeded sqlite query.

This is still is not fully done

Installing

Homebrew

brew install jaysonsantos/tools/csv-query

From source

Assuming you already have cargo just run this:

 cargo install csv-query-cli

Usage

Save these two example files.

user.csv

user_id;name
1;User 1
2;User 2
3;User 3

credits.csv

user_id;credit
1;5
1;30
2;3
1;4
3;1

and you should be able to run this query over it

$ csv-query -q "
select
    u.name, sum(c.credit) credits, avg(c.credit) avg_credits
from table1 u
join table2 c
    on u.user_id = c.user_id
group by u.user_id
having avg(c.credit) >= 3" \
-f user.csv -f credits.csv

"name";"credits";"avg_credits"
"User 1";"39";"13"
"User 2";"3";"3"

Or you can use the interactive mode

asciicast

Disclaimer

If you don't need the flexibility of SQLite or want to do things real fast and use a more mature project you should use xsv.

Dependencies

~26MB
~479K SLoC