题解 | #月均完成试卷数不小于3的用户爱作答的类别#

月均完成试卷数不小于3的用户爱作答的类别

https://www.nowcoder.com/practice/b1d13efcfa0c4ecea517afbdb9090845

select
    b.tag,
    count(b.tag) tag_cnt
from
    exam_record a,
    examination_info b
where
    a.exam_id = b.exam_id
    and a.uid in (
	select
		uid
	from
		exam_record
	where
		submit_time is not null
	group by
		uid,
		date_format (submit_time,
		'%Y%m')
	having
		count(uid) >= 3)

group by
    b.tag
order by
    count(b.tag) desc

全部评论

相关推荐

点赞 评论 收藏
分享
过往烟沉:我说什么来着,java就业面就是广!
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务