Skip to content

Instantly share code, notes, and snippets.

@machinelearningplus
Created September 24, 2023 09:54
Show Gist options
  • Save machinelearningplus/652b2c83ec7df94e61826c8b9a02c602 to your computer and use it in GitHub Desktop.
Save machinelearningplus/652b2c83ec7df94e61826c8b9a02c602 to your computer and use it in GitHub Desktop.
CREATE TABLE sales (
id INT AUTO_INCREMENT PRIMARY KEY,
sale_date DATE,
units_sold INT
);
INSERT INTO sales (sale_date, units_sold) VALUES
('2023-01-01', 10),
('2023-01-02', 15),
('2023-01-03', 12),
('2023-01-04', 20);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment