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

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

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
全部评论

相关推荐

不愿透露姓名的神秘牛友
07-15 17:09
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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