Skip to content

Instantly share code, notes, and snippets.

@oxlb
Created May 21, 2022 05:21
Show Gist options
  • Save oxlb/0a2b30b7fdcc0bbdcdbdc65dcc895e1d to your computer and use it in GitHub Desktop.
Save oxlb/0a2b30b7fdcc0bbdcdbdc65dcc895e1d to your computer and use it in GitHub Desktop.
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