I'm new to SQLite. Is there a way I can export the results of a query into a CSV file?
From here and d5e5's comment:
You'll have to switch the output to csv-mode and switch to file output.
sqlite> .mode csv sqlite> .output test.csv sqlite> select * from tbl1; sqlite> .output stdout
2.1m questions
2.1m answers
60 comments
57.0k users