Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save novalagung/d1da40981e4ef288a7bea3f08ce019b5 to your computer and use it in GitHub Desktop.
Save novalagung/d1da40981e4ef288a7bea3f08ce019b5 to your computer and use it in GitHub Desktop.
CREATE DATABASE IF NOT EXISTS hello_world;
USE hello_world;
CREATE TABLE IF NOT EXISTS users (
id int NOT NULL AUTO_INCREMENT,
first_name VARCHAR(255) NOT NULL,
last_name VARCHAR(255),
birth DATETIME,
PRIMARY KEY (id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment