Skip to content

Instantly share code, notes, and snippets.

@marttp
Created February 10, 2025 06:26
Show Gist options
  • Save marttp/11380173ac2af6b2fa68983c9eaa529f to your computer and use it in GitHub Desktop.
Save marttp/11380173ac2af6b2fa68983c9eaa529f to your computer and use it in GitHub Desktop.
Initial data just for demo purpose
INSERT INTO USER_PREFERENCES (id, category) VALUES
(1,'science'),
(2,'technology');
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