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

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

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

with tb as (
    select author, date_format(start_time, "%Y-%m") as month,
    sum(case when if_follow = 2 then -1 else if_follow end) / count(*) as fans_growth_rate, 
    sum(case when if_follow = 2 then -1 else if_follow end) as fans_this_month
    from tb_user_video_log uvl
    left outer join tb_video_info vi
    on uvl.video_id = vi.video_id
    where year(start_time) = 2021
    group by author, month
    order by author, month
)
select author, month, round(fans_growth_rate, 3) as fans_growth_rate, sum(fans_this_month) over(partition by author order by month) as total_fans
from tb
order by author, total_fans;

这次被卡在累加一列了,窗口函数可以干这个。

以及我只能在CTE里加年份条件,加在外面 (year(month) = 2021) 跑不了。

全部评论

相关推荐

菜菜咪:1. 可以使用简历网站的模版,美观度会更好一点 2. 邮箱可以重新申请一个,或者用qq邮箱的别名,部分hr可能会不喜欢数字邮箱 3. 项目经历最好分点描述,类似的项目很多,可以参考一下别人怎么写的 4. 自我评价可加可不加,技术岗更看重技术。最后,加油,优秀士兵
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务