Last active
November 11, 2019 08:52
-
-
Save saikatharryc/cd852ce7e4577fe19fbd54b2dae9623c to your computer and use it in GitHub Desktop.
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 "Ingredient" ( | |
"name" TEXT NOT NULL, | |
PRIMARY KEY ("name" ASC) | |
); | |
INSERT INTO "Ingredient" VALUES ('Vodka'); | |
INSERT INTO "Ingredient" VALUES ('Rum'); | |
INSERT INTO "Ingredient" VALUES ('Sherry'); | |
INSERT INTO "Ingredient" VALUES ('Whiskey'); | |
INSERT INTO "Ingredient" VALUES ('Cherry'); | |
INSERT INTO "Ingredient" VALUES ('Orange'); | |
INSERT INTO "Ingredient" VALUES ('Olive'); | |
INSERT INTO "Ingredient" VALUES ('Gin'); | |
INSERT INTO "Ingredient" VALUES ('Lemon Juice'); | |
INSERT INTO "Ingredient" VALUES ('Orange Gin'); | |
INSERT INTO "Ingredient" VALUES ('Sweet Vermouth'); | |
INSERT INTO "Ingredient" VALUES ('7-Up'); | |
INSERT INTO "Ingredient" VALUES ('Cranberry Juice'); | |
INSERT INTO "Ingredient" VALUES ('Dekuyper Razzmatazz'); | |
INSERT INTO "Ingredient" VALUES ('Orange Juice'); | |
INSERT INTO "Ingredient" VALUES ('Sour Mix'); | |
INSERT INTO "Ingredient" VALUES ('Dry Cider'); | |
INSERT INTO "Ingredient" VALUES ('Lager'); | |
INSERT INTO "Ingredient" VALUES ('Sloe Gin'); | |
INSERT INTO "Ingredient" VALUES ('Southern Comfort'); | |
INSERT INTO "Ingredient" VALUES ('Triple Sec'); | |
INSERT INTO "Ingredient" VALUES ('Blue Curacao'); | |
INSERT INTO "Ingredient" VALUES ('Lime Juice'); | |
INSERT INTO "Ingredient" VALUES ('Red Curacao'); | |
INSERT INTO "Ingredient" VALUES ('Tequila'); | |
SELECT * FROM Ingredient; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment