-
Notifications
You must be signed in to change notification settings - Fork 43
/
find-followers-count.sql
63 lines (52 loc) · 1.39 KB
/
find-followers-count.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
Find Followers Count Problem
Description
LeetCode Problem 1729.
Table: Followers
+-------------+------+
| Column Name | Type |
+-------------+------+
| user_id | int |
| follower_id | int |
+-------------+------+
(user_id, follower_id) is the primary key for this table.
This table contains the IDs of a user and a follower in a social media app where the follower follows the user.
Write an SQL query that will, for each user, return the number of followers.
Return the result table ordered by user_id.
The query result format is in the following example:
Followers table:
+---------+-------------+
| user_id | follower_id |
+---------+-------------+
| 0 | 1 |
| 1 | 0 |
| 2 | 0 |
| 2 | 1 |
+---------+-------------+
Result table:
+---------+----------------+
| user_id | followers_count|
+---------+----------------+
| 0 | 1 |
| 1 | 1 |
| 2 | 2 |
+---------+----------------+
The followers of 0 are {1}
The followers of 1 are {0}
The followers of 2 are {0,1}
*/
# V0
# V1
# https://circlecoder.com/find-followers-count/
select user_id, count(distinct follower_id) followers_count
from followers
group by user_id
order by user_id
# V2
# Time: O(nlogn)
# Space: O(n)
SELECT user_id,
Count(follower_id) AS followers_count
FROM followers
GROUP BY user_id
ORDER BY user_id;