Created
November 15, 2018 06:46
-
-
Save Omie/b9dd7fd5e4c4561df65bcfc64003988e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sqlite3 | |
sqlite3> .mode csv | |
sqlite3> .import filename.csv data # data is our virtual table name | |
sqlite3> select * from data; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment