Skip to content

Instantly share code, notes, and snippets.

@vmussak
Last active November 17, 2019 20:20
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 vmussak/a62dac98a5c8927e47f84e74e61e8aff to your computer and use it in GitHub Desktop.
Save vmussak/a62dac98a5c8927e47f84e74e61e8aff to your computer and use it in GitHub Desktop.
CREATE TABLE Cliente (
Id INT IDENTITY(1,1) NOT NULL,
Nome VARCHAR(50) NOT NULL,
Sobrenome VARCHAR(50) NOT NULL,
Email VARCHAR(200) NOT NULL,
CONSTRAINT Cliente_PK PRIMARY KEY (Id)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment