1729.sql (107B)
1 SELECT user_id, COUNT(follower_id) AS followers_count 2 FROM Followers 3 GROUP BY user_id 4 ORDER BY user_id ASC