I have these 3 tables below: "users", "friends" and "posts".
I want to get all my friends who are in the friends table and display their posts, taking their name and their image (which are in the users table).
Imagine a news feed, where I have to show posts.
I wanted to try doing just with JOINS, without using subselect (which was the way I found it to do)
Thank you!