题解 | #未完成试卷数大于1的有效用户#

未完成试卷数大于1的有效用户

https://www.nowcoder.com/practice/46cb7a33f7204f3ba7f6536d2fc04286

with cte as (
select uid,start_time,submit_time,tag,concat(date(start_time),':',tag) as deta
from exam_record left join examination_info using(exam_id)
where year(start_time)='2021' )
select uid,count(if(submit_time is null,1,null)) as incomplete_cnt,
           count(submit_time)                    as complete_cnt,
group_concat(distinct deta ORDER BY date(start_time),tag separator ';') as detail
from cte
group by uid
having complete_cnt>=1 and incomplete_cnt>1 and incomplete_cnt<5
order by incomplete_cnt desc

全部评论

相关推荐

10-10 00:14
门头沟学院 Java
程序员小白条:20年架构师,无工资
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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