题解 | #牛客直播开始时各直播间在线人数#
牛客直播开始时各直播间在线人数
https://www.nowcoder.com/practice/bdd30e83d47043c99def6d9671bb6dbf
# 时间:4/16 11:00 ~ # 明确问题:统计的是19:00 时刻的在线人数! # 方法:maybe sum()over()进行累计统计 (no) 只需要筛选保留符合条件时间段的数据 # 字段:course_id、course_name、online_num # tb1:筛选时间段包含了19:00的数据\ with tb1 as( select distinct user_id , course_id ,course_name,course_datetime from attend_tb left join course_tb using(course_id) # where in_datetime =< course_datetime and out_datetime >= course_datetime where course_datetime between in_datetime and out_datetime ) # tb2:聚合输出结果 select course_id,course_name,count(user_id) as online_num from tb1 group by course_id,course_name