HTMLify

LeetCode - Find Followers Count - MySQL
Views: 184 | Author: abh
SELECT user_id, count(follower_id) as followers_count FROM Followers GROUP BY user_id ORDER BY user_id;

Comments