· 1 min read

How to import CSV into SQLite3

To import a CSV file into SQLite is easy.

sqlite3 my.db
.mode csv
.import path/to/file.csv name_of_table

And done.

Comments

Leave a comment