All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g1701_1800.s1729_find_followers_count.script.sql Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
# Write your MySQL query statement below
# #Easy #Database #SQL_I_Day_7_Function #2022_04_30_Time_456_ms_(88.39%)_Space_0B_(100.00%)
select user_id, count(follower_id) as followers_count
from followers
group by user_id
order by user_id




© 2015 - 2024 Weber Informatics LLC | Privacy Policy