题解 | #每个创作者每月的涨粉率及截止当前的总粉丝量#

每个创作者每月的涨粉率及截止当前的总粉丝量

https://www.nowcoder.com/practice/d337c95650f640cca29c85201aecff84

select author,month,fans_growth_rate,
    sum(total_fans) over(partition by author order by month) as total_fans
from (select author,month,
    round(sum(follows)/count(author),3) as fans_growth_rate,
    sum(follows) as total_fans
from(
    select author,substring_index(start_time,'-',2) as month,
        if(if_follow='2',-1,if_follow) as follows
    from tb_user_video_log u
    left join tb_video_info v
    on u.video_id=v.video_id
    where start_time like '2021%'
    ) as uv
group by author,month
) as t
order by author asc,total_fans asc

全部评论

相关推荐

03-02 10:51
邵阳学院 Java
红鲤鱼与绿鲤鱼i:看了你的头像不像找工作,像在找妹子
点赞 评论 收藏
分享
大摆哥:刚好要做个聊天软件,直接让你帮他干活了
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务