【牛客】SQL127 月总刷题数和日均刷题数

描述

现有一张题目练习记录表practice_record,示例内容如下:

|----|------|-------------|---------------------|-------|
| id | uid | question_id | submit_time | score |
| 1 | 1001 | 8001 | 2021-08-02 11:41:01 | 60 |
| 2 | 1002 | 8001 | 2021-09-02 19:30:01 | 50 |
| 3 | 1002 | 8001 | 2021-09-02 19:20:01 | 70 |
| 4 | 1002 | 8002 | 2021-09-02 19:38:01 | 70 |
| 5 | 1003 | 8002 | 2021-08-01 19:38:01 | 80 |

请从中统计出2021年每个月里用户的月总刷题数month_q_cnt 和日均刷题数avg_day_q_cnt(按月份升序排序)以及该年的总体情况,示例数据输出如下:

|--------------|-------------|---------------|
| submit_month | month_q_cnt | avg_day_q_cnt |
| 202108 | 2 | 0.065 |
| 202109 | 3 | 0.100 |
| 2021汇总 | 5 | 0.161 |

解释:2021年8月共有2次刷题记录,日均刷题数为2/31=0.065(保留3位小数);2021年9月共有3次刷题记录,日均刷题数为3/30=0.100;2021年共有5次刷题记录(年度汇总平均无实际意义,这里我们按照31天来算5/31=0.161)

sql 复制代码
# 获取当月的天数:dayofmonth(last_day(submit_time))

select
date_format (submit_time,'%Y%m') as submit_month,
count(1) as month_q_cnt,
round(count(1)/ max(dayofmonth(last_day(submit_time))),3) as avg_day_q_cnt
from practice_record
where left(submit_time,4)=2021
group by submit_month

union all

select
'2021汇总' as submit_month,
count(1) as month_q_cnt,
round(count(1)/ 31,3)as avg_day_q_cnt
from practice_record
where left(submit_time,4)=2021

order by submit_month
相关推荐
智购科技智能售货柜1 小时前
2026自动售货机整机可靠性测试:从高低温交变到EMC电磁兼容的认证工程实践~YH
运维·服务器·数据库·人工智能·物联网
ltl2 小时前
RocksDB 架构演进:相对 LevelDB 的 diff 地图
数据库
ltl2 小时前
存储读取性能优化:索引、Bloom Filter 与读放大
数据库
xier_ran5 小时前
【infra之路】GPU 存储层次总结:L1 / L2 / HBM
java·网络·数据库
山甫aa6 小时前
Javaweb---MyBatis增删改查
java·数据库·后端·mybatis·springboot
其实防守也摸鱼7 小时前
接口审计:从原理到实践的万字深度指南
数据库·安全·自动化·github·copilot
@insist1237 小时前
系统集成项目管理工程师-信息和文档管理
网络·数据库·软考·系统集成项目管理工程师·软考中项·软件水平考试
残 风9 小时前
PostgreSQL 存储机制详解
数据库·postgresql·开源·数据库开发
JacksonMx9 小时前
Java CompletableFuture 异步编程实战:从入门到架构师避坑指南
linux·数据库·python