Created
November 22, 2021 21:11
-
-
Save pamelafox/f6cd534b5042923e2d8463a485663eb0 to your computer and use it in GitHub Desktop.
Revisions
-
pamelafox created this gist
Nov 22, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ CREATE TABLE animals (name TEXT, legs INTEGER, weight INTEGER); INSERT INTO animals VALUES ("dog", 4, 20); INSERT INTO animals VALUES ("cat", 4, 10); INSERT INTO animals VALUES ("ferret", 4, 10); INSERT INTO animals VALUES ("parrot", 2, 6); INSERT INTO animals VALUES ("penguin", 2, 10); INSERT INTO animals VALUES ("t-rex", 2, 12000);