题解 | 查询出每个运输方式在不同城市的平均运输时长以及总运输费用

查询出每个运输方式在不同城市的平均运输时长以及总运输费用

https://www.nowcoder.com/practice/673bf7b17e7c4962bcde889980eec872

select
    distinct 
    destination_city,transport_name,
    round(avg(timestampdiff(day, order_date,delivery_date))
    over(partition by destination_city,transport_id),2)
    as average_transport_duration,
    sum(total_cost) 
     over(partition by destination_city,transport_id)
     as total_transport_cost
from
    order_info
    left join cost_data using (order_id)
    left join transport_detail using(transport_id)

全部评论

相关推荐

11-06 16:50
门头沟学院 Java
用微笑面对困难:word打字比赛二等奖的我,也要来凑合凑合
点赞 评论 收藏
分享
LZStarV:冲就好了,就算真的是字节也冲,面评脏了大不了等三四个月就淡了,而且等到那个时候实力进步了选择还多,何必拘泥于字节
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务