题解 | #国庆期间每类视频点赞量和转发量#

国庆期间每类视频点赞量和转发量

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

select tag,dt,num1 as sum_like_cnt_7d, num2 as max_retweet_cnt_7d from(
select tag , date(start_time) dt,
sum(if_like),sum(if_retweet),
sum(sum(if_like)) over(partition by tag order by date(start_time)
                       rows 6 preceding) as num1,
max(sum(if_retweet)) over(partition by tag order by date(start_time)
                       rows 6 preceding) as num2
from tb_user_video_log join tb_video_info using(video_id)
group by tag , date(start_time))t 
where dt between '2021-10-01' and '2021-10-03'
order by tag desc,dt

主要是窗口函数的计算,并加入了框架概念。

全部评论

相关推荐

牛客279957775号:铁暗恋
点赞 评论 收藏
分享
09-27 10:54
重庆大学 C++
人已微死:致敬传奇耐测王。
投递小米集团等公司10个岗位
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务