Created
February 10, 2025 06:26
-
-
Save marttp/11380173ac2af6b2fa68983c9eaa529f to your computer and use it in GitHub Desktop.
Initial data just for demo purpose
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
INSERT INTO USER_PREFERENCES (id, category) VALUES | |
(1,'science'), | |
(2,'technology'); |
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 USER_PREFERENCES( | |
ID int not null AUTO_INCREMENT, | |
CATEGORY varchar(100) not null, | |
PRIMARY KEY (id) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment