Follows #69 - the README at https://github.com/multiprocessio/dsq/tree/b7af2679038f8b09802c88f2f088bcc78fa8872c#benchmark says `sqlite3` can't do one-liners, but it sort-of-can - this works for running the taxi query: ``` sqlite3 :memory: <<EOS .mode csv .import taxi.csv taxi SELECT passenger_count, COUNT(*), AVG(total_amount) FROM taxi GROUP BY passenger_count EOS ```
Follows #69 - the README at https://github.com/multiprocessio/dsq/tree/b7af2679038f8b09802c88f2f088bcc78fa8872c#benchmark says
sqlite3can't do one-liners, but it sort-of-can - this works for running the taxi query: