I have 2 tables, one for storing a post and the other for users that has liked the post.
I want to fetch the posts only where user has not liked it.
Example
Posts Table:
post_id, title
Like Table:
like_id, post_id, user_id
I only want the list of posts where user has not liked it.
What should be the SQL query?