Skip to content

Instantly share code, notes, and snippets.

@niktho
Created February 26, 2019 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niktho/327c802d581ec58ea669d35ba2ec3e62 to your computer and use it in GitHub Desktop.
Save niktho/327c802d581ec58ea669d35ba2ec3e62 to your computer and use it in GitHub Desktop.
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