Skip to content

Instantly share code, notes, and snippets.

@psanford
Last active April 7, 2019 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save psanford/1be9e67d16522ab7913f32033c760d8f to your computer and use it in GitHub Desktop.
Save psanford/1be9e67d16522ab7913f32033c760d8f to your computer and use it in GitHub Desktop.
sqlite3 examples
.mode csv
-- import column names from first show
.headers on
-- show current settings
.show
.import transactions.csv transactions
select * from transactions;
-- WAL
PRAGMA journal_mode=WAL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment