题解 | #2021年11月每天的人均浏览文章时长#

2021年11月每天的人均浏览文章时长

https://www.nowcoder.com/practice/8e33da493a704d3da15432e4a0b61bb3

select 
    dt,round(sum(sumtime)/count(cnt),1) as avg_viiew_len_sec
from (select 
    dt,uid,count(uid) as cnt,
    sum(times) as sumtime
from (select
            uid,
            artical_id,
            timestampdiff(second, in_time, out_time) as times,
            date (in_time) as dt
        from
            tb_user_log where artical_id!= 0 and  substring(in_time,1,7) = '2021-11') t 
    group by dt,uid) p 
    group by dt order by avg_viiew_len_sec ;

一次答不对 每次都是错了一步步改 心累

全部评论

相关推荐

不愿透露姓名的神秘牛友
06-19 14:35
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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