Created
February 12, 2021 03:36
-
-
Save bmcculley/9d33fa46b08f61d7f7966caf2ee1fa07 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 Persons ( | |
PersonID int, | |
FirstName varchar(255), | |
LastName varchar(255), | |
Address varchar(255), | |
City varchar(255), | |
PostalCode varchar(255), | |
Country varchar(255) | |
); | |
INSERT INTO Persons (FirstName, LastName, Address, City, PostalCode, Country) | |
VALUES ('Karl', 'Jablonski', 'Skagen 21', 'Stavanger', '4006', 'Norway'); | |
INSERT INTO Persons (FirstName, LastName, Address, City, PostalCode, Country) | |
VALUES ('Matti ', 'Karttunen', 'Keskuskatu 45', 'Helsinki', '21240', 'Finland'); | |
INSERT INTO Persons (FirstName, LastName, Address, City, PostalCode, Country) | |
VALUES ('Tom', 'Erichsen', '305 - 14th Ave. S. Suite 3B', 'Seattle', '98128', 'USA'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment