题解 | #今天的刷题量(一)#
今天的刷题量(一)
https://www.nowcoder.com/practice/e18f56796ae94c3d885e61c8d57a950e
select s.name,a.cnt
from(
select subject_id, count(*) cnt
from submission
where create_time=date_format(now(),'%Y-%m-%d')
group by subject_id) a
left join
subject s
on a.subject_id=s.id
order by a.cnt desc,a.subject_id
- 先聚合得到各题目的次数
- 然后连接
- 使用current_date 或者 now 来得到当前日期

查看25道真题和解析