diff --git a/1729-find-followers-count/1729-find-followers-count.sql b/1729-find-followers-count/1729-find-followers-count.sql new file mode 100644 index 0000000..741d447 --- /dev/null +++ b/1729-find-followers-count/1729-find-followers-count.sql @@ -0,0 +1,2 @@ +# Write your MySQL query statement below +SELECT user_id, COUNT(follower_id) AS followers_count FROM Followers GROUP BY user_id ORDER BY user_id; \ No newline at end of file