* ProblemWrite a solution that will, for each user, return the number of followers. Return the result table ordered by user_id in ascending order. * ExplanationThe followers of 0 are {1}The followers of 1 are {0}The followers of 2 are {0,1} * Solution (Success)# Write your MySQL query statement belowselect user_id, count(follower_id) followers_count from Followers group by user_id order ..