题解 | #牛客的课程订单分析(六)#

牛客的课程订单分析(六)

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


# 判断'is_group_buy'字段
select o.id, 
    o.is_group_buy, 
    case
        when o.is_group_buy = 'No' then c.name      -- 使用 CASE 表达式进行条件判断
        else NULL
    end as client_name
from order_info o left join client c    -- left join:只有非拼团(is_group_buy为No)订单
on o.client_id = c.id
where date > '2025-10-15' 
    and status = 'completed'
    and product_name in ('C++', 'Java', 'Python')
    and user_id in (                -- 要显示除了user_id的信息,不能直接使用group by后的结果,参考上一题
        select user_id
        from order_info
        where date > '2025-10-15' 
            and status = 'completed' 
            and product_name in ('C++', 'Java', 'Python')
        group by user_id
        having count(id) >= 2
    )
order by id;

全部评论

相关推荐

我已成为0offer的糕手:别惯着,胆子都是练出来的,这里认怂了,那以后被裁应届被拖工资还敢抗争?
点赞 评论 收藏
分享
10-07 20:48
门头沟学院 Java
不敢追175女神:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务