Skip to content

Instantly share code, notes, and snippets.

@thsutton
Created December 1, 2015 09:34
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 thsutton/ae3c0d64fb512e358394 to your computer and use it in GitHub Desktop.
Save thsutton/ae3c0d64fb512e358394 to your computer and use it in GitHub Desktop.
SQLite derp
sqlite> create table foo ( id int not null );
sqlite> insert into foo values (1);
sqlite> insert into foo values (2);
sqlite> insert into foo values ("hello");
sqlite> select * from foo;
1
2
hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment