Created
October 9, 2018 14:09
-
-
Save futoase/cc7fc96ca9d4b6e07e9e85648d18ca03 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 test_db; | |
CREATE TABLE IF NOT EXISTS test_db.users ( | |
id INT AUTO_INCREMENT, | |
name VARCHAR(255) NOT NULL, | |
age INT NOT NULL, | |
sex TINYINT NOT NULL DEFAULT 0, | |
PRIMARY KEY (id) | |
); | |
INSERT INTO test_db.users (name, age, sex) | |
VALUES ('taro', 18, 1), | |
('jiro', 17, 1), | |
('hanako', 21, 2), | |
('himawari', 20, 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment