I have the following tables
A User table with column names (UserId,Name,email)
A Videos table with column names (UserId,VideoLink)
An Activity table with column names (UserId,Status) if status=0 likes,if status=1 disliked
I want to get the following result
Name, Total_Videos_posted_by_that_user, count(Likes), count(dislikes)
How can i Query them in a single Query?