Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 12, 2018 20:01
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/747ccf364a5b7c068d5199d58684f9ab to your computer and use it in GitHub Desktop.
Save parzibyte/747ccf364a5b7c068d5199d58684f9ab to your computer and use it in GitHub Desktop.
CREATE DATABASE IF NOT EXISTS pruebas;
USE pruebas;
CREATE TABLE personas(
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
nombre VARCHAR(255) NOT NULL,
apellidos VARCHAR(255) NOT NULL,
sexo CHAR NOT NULL,
PRIMARY KEY(id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment