题解 | #每份试卷每月作答数和截止当月的作答总数。#

每份试卷每月作答数和截止当月的作答总数。

https://www.nowcoder.com/practice/5f1cbe74c682485aa73e4c2b30f04a62

select 
exam_id,
date_format(start_time,"%Y%m") as start_month,
count(start_time) as month_cnt,
sum(count(start_time)) over (partition by exam_id order by date_format(start_time,"%Y%m")) as cum_exam_cnt 
from 
exam_record  
group by exam_id,start_month

# 考核知识点:

# 聚合窗口函数的使用,sum() over (patition by 字段 order by 字段 )

# patition by 是分组依据 order by 是排序依据 ,sum(count(start_time))是总和统计start_time的次数和,其中容易出错的地方是over()里面的排序依据,不可以直接写 order by start_month 会报错,必须写成date_format(start_time,"%Y%m")

注:以上内容仅为个人笔记,方便自己回头查看,若有题友提出建议,欢迎,望大家多多交流,互相学习

全部评论

相关推荐

一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
10-24 11:10
山西大学 Java
若梦难了:哥们,面试挂是很正常的。我大中厂终面挂,加起来快10次了,继续努力吧。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务