Created
May 21, 2022 05:21
-
-
Save oxlb/0a2b30b7fdcc0bbdcdbdc65dcc895e1d 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 TABLE student ( | |
id int NOT NULL AUTO_INCREMENT, | |
name VARCHAR (255), | |
PRIMARY KEY (ID) | |
); | |
INSERT INTO student(id, name) VALUES | |
(1, 'A'), | |
(2, 'B'), | |
(3, 'C'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment