Created
December 6, 2020 23:26
-
-
Save soonsam123/9f712b1663f9aee4f557297ec636e4b9 to your computer and use it in GitHub Desktop.
This file contains 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 martial_arts; | |
CREATE TABLE dojos ( | |
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, | |
dojo_name VARCHAR(255), | |
teacher VARCHAR(255) | |
); | |
INSERT INTO dojos (dojo_name, teacher) | |
VALUES | |
('DRAGON GYM', 'ARTHUR SALES'), | |
('FIRE GYM DOJO', 'MIKE TANAKA'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment