Skip to content

Instantly share code, notes, and snippets.

@hoangnt-2197
Created January 18, 2021 10:18
Show Gist options
  • Save hoangnt-2197/004ee303a679f53bde44ddee458d7a1d to your computer and use it in GitHub Desktop.
Save hoangnt-2197/004ee303a679f53bde44ddee458d7a1d to your computer and use it in GitHub Desktop.
insert into post (title, id)
values ('First post', 1)
insert into post_comment (review, id)
values ('My first review', 2)
insert into post_comment (review, id)
values ('My second review', 3)
insert into post_comment (review, id)
values ('My third review', 4)
insert into post_post_comment (Post_id, comments_id)
values (1, 2)
insert into post_post_comment (Post_id, comments_id)
values (1, 3)
insert into post_post_comment (Post_id, comments_id)
values (1, 4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment