Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 223 Bytes

File metadata and controls

12 lines (9 loc) · 223 Bytes

문제보기

🔎문제 풀이 MySQL

SELECT user_id, COUNT(follower_id) AS 'followers_count'
FROM Followers
GROUP BY user_id
ORDER BY 1;