题解 | 用户订单信息查询

用户订单信息查询

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

# 城市总额
with
t1 as(
    select
        city,
        sum(total_amount) as total_order_amount
    from
        orders left join customers using(customer_id)
    group by
        city
    order by
        total_order_amount desc,
        city
)

select * from t1

全部评论

相关推荐

03-01 19:30
已编辑
南京大学 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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