Created
September 16, 2023 04:45
-
-
Save machinelearningplus/6830b85d21aa6866f9963beda1d31320 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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