Skip to content

Instantly share code, notes, and snippets.

@machinelearningplus
Created September 19, 2023 00:23
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/2d03cec76f3008f4bd5f348895c60de4 to your computer and use it in GitHub Desktop.
Save machinelearningplus/2d03cec76f3008f4bd5f348895c60de4 to your computer and use it in GitHub Desktop.
CREATE TABLE employee_skills (
employee_id INT,
skill_name VARCHAR(50),
skill_level INT
);
INSERT INTO employee_skills (employee_id, skill_name, skill_level)
VALUES
(1, 'Java', 4),
(1, 'SQL', 3),
(1, 'Python', 5),
(2, 'Java', 3),
(2, 'SQL', 4),
(3, 'Python', 4),
(3, 'JavaScript', 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment