Skip to content

Instantly share code, notes, and snippets.

@machinelearningplus
Created September 16, 2023 04:45
Show Gist options
  • Save machinelearningplus/6830b85d21aa6866f9963beda1d31320 to your computer and use it in GitHub Desktop.
Save machinelearningplus/6830b85d21aa6866f9963beda1d31320 to your computer and use it in GitHub Desktop.
CREATE TABLE employee_comments (
employee_id INT,
comment_text VARCHAR(255)
);
INSERT INTO employee_comments (employee_id, comment_text)
VALUES
(1, 'John is a hard worker.'),
(1, 'John is very reliable.'),
(2, 'Alice is a great team player.'),
(3, 'Bob always meets deadlines.');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment