Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 262 Bytes

1729. Find Followers Count.md

File metadata and controls

8 lines (8 loc) · 262 Bytes

1729. Find Followers Count

Question Link

Solution

# Write your MySQL query statement below
select user_id, count(user_id) followers_count from Followers group by user_id
order by user_id asc