본문 바로가기

코딩일기

SQL 코드카타 103 - Find Followers Count

https://leetcode.com/problems/find-followers-count/description/

 

Column Name Type
user_id int
follower_id int

 

Followers 테이블:

  • user_id (int): 각 사용자의 ID
  • follower_id (int) : 팔로워의 ID

각 사용자의 팔로워 수를 가져오는 SQL 쿼리를 작성하세요.

select
    user_id,
    count(user_id) followers_count
from Followers
group by user_id
order by user_id

완료! 그런데 속도가 좀...

문제를 푸는 시간보다 블로그에 옮겨 적는 것이 더 오래걸린 문제였다.