Skip to content

Instantly share code, notes, and snippets.

@tylerflint
Created November 15, 2011 00:39
Show Gist options
  • Save tylerflint/1365717 to your computer and use it in GitHub Desktop.
Save tylerflint/1365717 to your computer and use it in GitHub Desktop.
test sql
CREATE TABLE lyon_farts (
type varchar(25),
duration int,
severity int,
);
INSERT INTO lyon_farts VALUES ('sbd', 2, 5);
INSERT INTO lyon_farts VALUES ('pop', 1, 2);
INSERT INTO lyon_farts VALUES ('shard', 3, 10);
SELECT * FROM lyon_farts WHERE severity > 3;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment