I have 2 tables
Following
id
User_ID
Following_user_ID
The User_ID is following the Following_user_ID
Activity
A_ID
User_ID
Shared
(The User_ID column is the user that inserted the data into the tables.)
How would I build the query to select all of the activity rows where the currently logged in user is following the user in the User_ID column of Activity.
EXAMPLE
Following
id = 1
User_ID = 1
Following_user_ID = 2
User 1 is following user 2
Activity
A_ID = 1
User_ID = 2
Shared = Blah Blah
How can I make it so that user 1 (currently logged in) can see the activity of User 2 as user 1 is following user 2?
From the example above, user 1 should be able to see along the lines of "User 2 shared Blah Blah".
I have tried to explain this the best I can, have been trying to figure out the query but can't wrap my head around it.
