题解 | #分别满足两个活动的人#

各个视频的平均完播率

http://www.nowcoder.com/practice/96263162f69a48df9d84a93c71045753

没有用avg,就按video_id分类后相除得到的完播率,另外用到一个左连接来找到完播的视频:

select video_id,round(sum(case when dif >= duration then 1 else 0 end)/count(uid),3) avg_comp_play_rate from (
    select uid,video_id,timestampdiff(second,start_time,end_time) dif,duration
    from tb_user_video_log 
    left join 
    tb_video_info 
    using(video_id)
    where year(start_time) = 2021
) A
group by video_id
order by 2 desc
全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

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