Skip to content

Commit efc88e4

Browse files
authored
Create 1729-find-followers-count.sql
1 parent e8cf1ff commit efc88e4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

1729-find-followers-count.sql

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Write your MySQL query statement below
2+
SELECT user_id, COUNT(follower_id) AS followers_count
3+
FROM Followers
4+
GROUP BY user_id
5+
ORDER BY user_id;

0 commit comments

Comments
 (0)