sqlite3

sqlite3 is the command-line shell for SQLite databases.

Exporting from db to csv

.mode csv
.header on
.output output.csv
SELECT * FROM table;
.quit