题解 | 国庆在北京接单3次及以上的司机统计信息

2021年国庆在北京接单3次及以上的司机统计信息

https://www.nowcoder.com/practice/992783fd80f746d49e790d33ee537c19

# 24.3.5 9:08 —— 9:33  25min

# 字段:city、avg_order_num、avg_income
# 时间:2021-10-01  —— 2021-10-07

# tb1:链接 + 筛选
with tb1 as(
    select driver_id,city, date(finish_time) as dt,fare
    from tb_get_car_order left join tb_get_car_record using(order_id) 
    where  date(finish_time) >= '2021-10-01' 
    AND date(finish_time) <= '2021-10-07' 
    AND city = '北京'
    # AND mileage is not null 
    # 筛选接单次数在3次以上的司机
    # 此处假设接单但是取消的不算入计算(预先排除了)
    # 但是从本题来看,就算取消订单也算在内
),
# tb2:筛选司机 接单三次以上
tb2 as(
    select driver_id,count(dt) as cnt
    from tb1
    group by driver_id
    having count(dt) >= 3
)

# 结果查询:聚合---筛选符合条件的司机 
select city,
round(count(dt)/count(distinct driver_id),3) as avg_order_num,
round(sum(fare)/ count(distinct driver_id),3) as avg_income
from tb1
where driver_id in (select driver_id from tb2)
group by city




全部评论
weishe为什么后面要加GROUP BY city呢,不加就报错
点赞 回复 分享
发布于 04-30 21:28 广东

相关推荐

不愿透露姓名的神秘牛友
11-21 17:16
科大讯飞 算法工程师 28.0k*14.0, 百分之三十是绩效,惯例只发0.9
点赞 评论 收藏
分享
10-31 14:54
已编辑
门头沟学院 算法工程师
点赞 评论 收藏
分享
勤劳的香菇求被捞求offer:满帮笔试都不给我发 似乎被卡本了
投递满帮集团等公司10个岗位
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务