题解 | #计算用户8月每天的练题数量#

计算用户8月每天的练题数量

http://www.nowcoder.com/practice/847373e2fe8d47b4a2c294bdb5bda8b6

select 
day(date) day, 
count(question_id) question_cnt
from question_practice_detail
where date like '2021-08%'
group by day;
其中的 like 使用模糊表达
也可以使用 regexp '2021-08'
或者 substring(data, 1, 7)='2021-08'
全部评论

相关推荐

点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务