코딩테스트/리트코드(LeetCode) - SQL Study Plan
리트코드(LeetCode) SQL 문제풀이 - 1729. Find Followers Count
진한색
2023. 1. 26. 17:47
MySQL 문제 1729. Find Followers Count
select user_id,count(follower_id) as followers_count
from Followers
group by user_id
order by user_id asc;
728x90