Created
November 15, 2011 00:39
-
-
Save tylerflint/1365717 to your computer and use it in GitHub Desktop.
test sql
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
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