SQLite: How do I save the result of a query as a CSV file?

RayLoveless picture RayLoveless · May 20, 2011 · Viewed 121.1k times · Source

I'm new to SQLite. Is there a way I can export the results of a query into a CSV file?

Answer

gdw2 picture gdw2 · May 20, 2011

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