602. Friend Requests II: Who Has the Most Friends
2023-02-11 01:04

602. Friend Requests II: Who Has the Most Friends

Problem
Solution
SELECT Req.id, IFNULL(req_count, 0) + IFNULL(acc_count,0) AS num
FROM
(SELECT requester_id AS id, COUNT(request...
Coding Test
003

댓글