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

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

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

先求每月的总变化数量,再叠加上个月的就是总粉丝量。

with t1 as(
    select
        author,
        date_format(start_time,'%Y-%m') as `month`,
        round(sum(if(if_follow=2,-1,if_follow))/count(start_time),3) as fans_growth_rate,
        sum(if(if_follow=2,-1,if_follow)) as month_total_fans
    from tb_user_video_log as t1
    join tb_video_info as t2 on t1.video_id=t2.video_id
    where year(start_time) = 2021
    group by author,date_format(start_time,'%Y-%m')
)
select
    author,
    month,
    fans_growth_rate,
    sum(month_total_fans) over(partition by author order by month) as total_fans
from t1
order by author,total_fans;

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-24 20:55
阿里国际 Java工程师 2.7k*16.0
程序员猪皮:没有超过3k的,不太好选。春招再看看
点赞 评论 收藏
分享
hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务