Created
October 10, 2012 19:39
-
-
Save mattrco/3867915 to your computer and use it in GitHub Desktop.
Example SQLite INSERT
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
sqlite> .schema names | |
CREATE TABLE names(id int, name string); | |
sqlite> INSERT INTO names VALUES (1, 'Holly'); | |
sqlite> SELECT * FROM names; | |
1 | Holly |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment