题解 | #各科目平均观看时长#timestampdiff
牛客直播各科目平均观看时长
https://www.nowcoder.com/practice/e9e7dc4c8623467793f6999cbfee9360
# # 请你统计每个科目的平均观看时长(观看时长定义为离开直播间的时间与进入直播间的时间之差,单位是分钟),输出结果按平均观看时长降序排序,结果保留两位小数。 # [使用]:timestampdiff(minute,in_datetime,out_datetime) select course_name, round( avg(timestampdiff(minute,in_datetime,out_datetime)) ,2) as avg_Len from course_tb a, attend_tb b where a.course_id =b. course_id group by course_name order by avg_Len desc;
SQL错题 文章被收录于专栏
每天学习一遍 刷题刷题 越刷越强!