A number of times I’ve needed to export a specific table from an SQLite database to a CSV file.
The sqlite
program itself gives a very clean interface for this.
sqlite3 -header -csv database.sqlite "SELECT * FROM artists;" > ./artists.csv
Conversely, if I need do this from the SQLite prompt, I need to do it slightly differently.
Continue reading