Created
April 4, 2020 10:41
-
-
Save novalagung/d1da40981e4ef288a7bea3f08ce019b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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