Skip to content

Instantly share code, notes, and snippets.

@machinelearningplus
Created September 22, 2023 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save machinelearningplus/43cf431f810e1812c1be39e5710b06f0 to your computer and use it in GitHub Desktop.
Save machinelearningplus/43cf431f810e1812c1be39e5710b06f0 to your computer and use it in GitHub Desktop.
CREATE TABLE Students (
ID INT PRIMARY KEY AUTO_INCREMENT,
Class INT,
Name VARCHAR(255)
);
INSERT INTO Students (Class, Name) VALUES
(101, 'Alice'),
(101, 'Bob'),
(102, 'Charlie'),
(103, 'David'),
(101, 'Eve'),
(102, 'Frank');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment