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