Skip to content

Instantly share code, notes, and snippets.

@mattrco
Created October 10, 2012 19:39
Show Gist options
  • Save mattrco/3867915 to your computer and use it in GitHub Desktop.
Save mattrco/3867915 to your computer and use it in GitHub Desktop.
Example SQLite INSERT
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