# #1729 Find Followers Count

#### <https://leetcode.com/problems/find-followers-count/>

{% tabs %}
{% tab title="MS SQL Server" %}

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

{% endtab %}
{% endtabs %}
