-
-
Save niktho/327c802d581ec58ea669d35ba2ec3e62 to your computer and use it in GitHub Desktop.
This file contains 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 dbo.Customer | |
( | |
Id INT NOT NULL IDENTITY PRIMARY KEY, | |
FirstName NVARCHAR (255) NOT NULL, | |
MiddleName NVARCHAR (255) NULL, | |
LastName NVARCHAR (255) NOT NULL, | |
Age INT NOT NULL, | |
) | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment