Question: Does this SQL query work for this question? Question 2: Write a SQL query that returns the three users who have sent the most friend
Question 2: Write a SQL query that returns the three users who have sent the most friend requests. Your query should return the username and number of requests sent. SELECT username COUNT(requester_Id) FROM users u JOIN friend_requests FON f.requestee_id =u. user.id GROUP BY username ORDER BY COUNT(requester_id) LIMIT 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
