-
1729. Find Followers Count mysqlLeetCode_Study_Plan/SQL 2022. 10. 2. 14:39
https://leetcode.com/problems/find-followers-count/
select user_id, count(distinct follower_id) as followers_count from followers group by user_id order by user_id;
'LeetCode_Study_Plan > SQL' 카테고리의 다른 글
511. Game Play Analysis I mysql (0) 2022.10.02 586. Customer Placing the Largest Number of Orders mysql (0) 2022.10.02 1693. Daily Leads and Partners mysql (0) 2022.10.02 1141. User Activity for the Past 30 Days I mysql (0) 2022.10.02 176. Second Highest Salary mysql (0) 2022.10.02