Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 3, 2019 22:44
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 parzibyte/1a2b9b53c202ae3e1c895306e9d8223e to your computer and use it in GitHub Desktop.
Save parzibyte/1a2b9b53c202ae3e1c895306e9d8223e to your computer and use it in GitHub Desktop.
CREATE TABLE mascotas(
id bigint identity(1,1) primary key,
nombre varchar(50) NOT NULL,
edad smallint NOT NULL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment