rubus0304 님의 블로그

[코트카타 103] 본문

Data Analyst/daily

[코트카타 103]

rubus0304 2024. 12. 16. 09:58

103. Find Followers Count

 

Write a solution that will, for each user, return the number of followers.

Return the result table ordered by user_id in ascending order.

The result format is in the following example.

 

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

 

 

 

 

'Data Analyst > daily' 카테고리의 다른 글

[코드카타 104]  (0) 2024.12.17
[태블로 과제해설]  (0) 2024.12.16
[QCC 4회차]  (1) 2024.12.13
오늘은 새로운 팀 만난 날~  (0) 2024.12.10
[프로젝트 5주차]  (0) 2024.12.06