题解 | #每篇文章同一时刻最大在看人数#

每篇文章同一时刻最大在看人数

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

with t1 as(select uid,artical_id,in_time as time,1 as person from tb_user_log
where artical_id<>0
union all
select uid,artical_id,out_time as time,-1 as person from tb_user_log
where artical_id<>0
order by time,person desc),
t2 as (select *,sum(person) over(partition by artical_id order by time,person desc) as uv from t1)
select artical_id,max(uv) as max_uv from t2 group by artical_id order by max_uv desc

全部评论

相关推荐

站队站对牛:进度也算很慢的了
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务