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

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

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

with t1 as (
    select
        artical_id,
        in_time as at_time,
        1 as uv
    from
        tb_user_log 
        where artical_id!=0
    union all
    select
        artical_id,
        out_time as at_time,
        -1 as uv
    from
        tb_user_log
  where artical_id!=0
),
t2 as(
    select
        artical_id,
        sum(uv) over (
            partition by artical_id
            order by
                at_time,
                uv desc
        ) as current_uv
    from
        t1
)

select
    artical_id,
    max(current_uv) as max_uv
from
    t2
group by
    artical_id
order by
    max_uv desc

全部评论

相关推荐

最近拿到了正浩的提前批offer感觉自己的实力得到了肯定,也给了我更多底气
搞机墨镜猫:正浩提前批官网好像就只有电力电子软硬件,哥们投的是这两个岗位吗
26届校招投递进展
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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