Skip to content

Instantly share code, notes, and snippets.

@machinelearningplus
Created September 20, 2023 09:46
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/ba2b43891c2840a42e35d30139bcf5f3 to your computer and use it in GitHub Desktop.
Save machinelearningplus/ba2b43891c2840a42e35d30139bcf5f3 to your computer and use it in GitHub Desktop.
CREATE TABLE user_interests (
user_id INT NOT NULL,
interest VARCHAR(50) NOT NULL
);
INSERT INTO user_interests(user_id, interest)
VALUES (1, 'Reading'),
(1, 'Writing'),
(2, 'Painting'),
(2, 'Singing'),
(3, 'Traveling');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment