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

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

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

问题分析

1、每份试卷每月作答数——GROUP BY + COUNT() 2、每份试卷截止当月的作答总数——SUM()OVER()

答案参考

SELECT
    exam_id,date_format(start_time,'%Y%m')start_month
    ,count(start_time)mouth_cnt
    ,sum(count(start_time))over(partition by exam_id order by date_format(start_time,'%Y%m'))cum_exam_cnt
FROM
    exam_record
GROUP BY
    exam_id,date_format(start_time,'%Y%m');
全部评论
该牛油正在参与牛客写题解薅羊毛的活动,牛币,周边,京东卡超多奖品放送,活动进入倒计时!快来捡漏啦https://www.nowcoder.com/discuss/888949?source_id=profile_create_nctrack&channel=-1
点赞 回复 分享
发布于 2022-04-27 12:09

相关推荐

贺兰星辰:不要漏个人信息,除了简历模板不太好以外你这个个人简介是不是太夸大了...
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务