Leetcode in Java && Oracle
422 subscribers
8 photos
397 files
400 links
Second channel: @codeforces_java

Let's Develop Together!
Download Telegram
image_2022-04-28_18-33-37.png
19.5 KB
#N1729. Find Followers Count
problem link
#solution
select user_id, count(distinct follower_id) as followers_count
from followers group by user_id;