题解 | 国庆在北京接单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 广东

相关推荐

沉淀一会:**圣经 1.同学你面试评价不错,概率很大,请耐心等待;2.你的排名比较靠前,不要担心,耐心等待;3.问题不大,正在审批,不要着急签其他公司,等等我们!4.预计9月中下旬,安心过节;5.下周会有结果,请耐心等待下;6.可能国庆节前后,一有结果我马上通知你;7.预计10月中旬,再坚持一下;8.正在走流程,就这两天了;9.同学,结果我也不知道,你如果查到了也告诉我一声;10.同学你出线不明朗,建议签其他公司保底!11.同学你找了哪些公司,我也在找工作。
点赞 评论 收藏
分享
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务