Skip to content

Latest commit

 

History

History

1729-Find-Followers-Count

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
Source : https://leetcode.com/problems/find-followers-count/
Author : liuyubobobo
Time   : 2022-04-20

Using GROUP BY

SELECT user_id, COUNT(*) AS followers_count
FROM Followers
GROUP BY user_id
ORDER BY user_id