Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 16, 2019 15:33
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/b369a23505806d526aa06d95b7d477bc to your computer and use it in GitHub Desktop.
Save parzibyte/b369a23505806d526aa06d95b7d477bc to your computer and use it in GitHub Desktop.
CREATE TABLE mascotas (
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
nombre VARCHAR(255) NOT NULL,
edad SMALLINT NOT NULL,
raza VARCHAR(255) NOT NULL,
genero CHAR NOT NULL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment