题解 | #牛客的课程订单分析(七)#空值填充ifnull

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

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


with t as(
    select distinct user_id,
        count(id) over(partition by user_id) cnt
    from order_info
    where date>'2025-10-15'
    and status='completed'
),

t1 as(
    select o.id id,
        ifnull(c.name,'GroupBuy') source
    from order_info o
    left join client c on o.client_id=c.id
    left join t on o.user_id=t.user_id
    where date>'2025-10-15'
    and status='completed'
    and cnt>=2
    and product_name in ('C++','Python','Java')
    order by o.id
)

select 
    distinct source,
    count(id) over(partition by source) cnt
from t1


空值填充:ifnull(字段名,要填充的内容)

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-27 10:52
点赞 评论 收藏
分享
一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
牛客410815733号:这是什么电影查看图片
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务