题解 | #返回每个顾客不同订单的总金额#

返回每个顾客不同订单的总金额

http://www.nowcoder.com/practice/ce313253a81c4947b20e801cd4da7894

法一:
select cust_id, total_order
from (select order_num, sum(quantity * item_price) as total_order
    from OrderItems
    group by order_num) t
inner join Orders o1
on o1.order_num = t.order_num
order by total_order desc
法二:
select cust_id, sum(quantity * item_price) as total_order
from OrderItems o1, Orders o2
where o1.order_num = o2.order_num
group by cust_id
order by total_order desc
全部评论

相关推荐

图源网络侵权删
dddooola:这个事情我去年8月就看到有人b站(up:程序员正义)在举报了,可能一直在查,这次是查明后的处分了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务