Skip to content

Instantly share code, notes, and snippets.

@lse123
Forked from macdonst/create.sql
Created July 10, 2013 17:21
Show Gist options
  • Save lse123/5968241 to your computer and use it in GitHub Desktop.
Save lse123/5968241 to your computer and use it in GitHub Desktop.
CREATE TABLE example (id INTEGER PRIMARY KEY, data TEXT);
INSERT INTO example (data) VALUES ('First');
INSERT INTO example (data) VALUES ('Second');
INSERT INTO example (data) VALUES ('Third');
CREATE TABLE example2 (id INTEGER PRIMARY KEY, data TEXT);
INSERT INTO example2 (data) VALUES ('First');
INSERT INTO example2 (data) VALUES ('Second');
INSERT INTO example2 (data) VALUES ('Third');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment