题解 | #统计复旦用户8月练题情况#

统计复旦用户8月练题情况

https://www.nowcoder.com/practice/53235096538a456b9220fce120c062b3

select
    a.device_id,
    university,
    sum(
        case
            when b.device_id is not null
            and month (b.date) = 8 then 1
            else 0
        end
    ) as question_cnt,
    sum(
        case
            when b.result = 'right'
            and month (b.date) = 8 then 1
            else 0
        end
    ) as right_question_cnt
from
    user_profile as a
left join 
    question_practice_detail as b on a.device_id = b.device_id
where
    a.university = '复旦大学'
group by a.device_id

to review

全部评论

相关推荐

威猛的小饼干正在背八股:挂到根本不想整理
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务