We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent59c28d5 commitfce162dCopy full SHA for fce162d
README.md
@@ -1091,6 +1091,7 @@ _If you like this project, please leave me a star._ ★
1091
1092
| # | Title | Solutions | Video | Difficulty | Tag
1093
|-----|----------------|---------------|---------------|---------------|-------------
1094
+|1729|[Find Followers Count](https://leetcode.com/problems/find-followers-count/)|[Solution](../master/database/_1729.sql)|| Easy|
1095
|1709|[Biggest Window Between Visits](https://leetcode.com/problems/biggest-window-between-visits/)|[Solution](../master/database/_1709.sql)|| Medium|
1096
|1693|[Daily Leads and Partners](https://leetcode.com/problems/daily-leads-and-partners/)|[Solution](../master/database/_1693.sql)|| Easy|
1097
|1683|[Invalid Tweets](https://leetcode.com/problems/invalid-tweets/)|[Solution](../master/database/_1683.sql)|| Easy|
database/_1729.sql
@@ -0,0 +1,2 @@
1
+--# Write your MySQL query statement below
2
+select user_id,count(follower_id)as followers_countfrom followersgroup by user_idorder by user_id;