Skip to content

Instantly share code, notes, and snippets.

@machinelearningplus
Created September 19, 2023 02:11
Show Gist options
  • Save machinelearningplus/80cdf58b789e7a70f1c02dba61b589a1 to your computer and use it in GitHub Desktop.
Save machinelearningplus/80cdf58b789e7a70f1c02dba61b589a1 to your computer and use it in GitHub Desktop.
CREATE TABLE employees (
employee_id INT PRIMARY KEY,
first_name VARCHAR(50),
last_name VARCHAR(50),
salary INT
);
INSERT INTO employees (employee_id, first_name, last_name, salary)
VALUES
(1, 'John', 'Doe', 50000),
(2, 'Jane', 'Smith', 60000),
(3, 'Michael', 'Johnson', 55000),
(4, 'Emily', 'Brown', 58000),
(5, 'David', 'Davis', 62000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment