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.30
Show newest version
# Write your MySQL query statement below
# #Easy #Database #SQL_I_Day_7_Function #2023_06_16_Time_1228_ms_(38.04%)_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