题解 | #返回顾客名称和相关订单号以及每个订单的总价#

返回顾客名称和相关订单号以及每个订单的总价

https://www.nowcoder.com/practice/4dda66e385c443d8a11570a70807d250

先联结Customers、Orders这两个表,再联结OrderItems表;

select cust_name,
        order_num ,
        round((select sum(quantity *item_price ) 
               from OrderItems 
               where OrderItems.order_num =Orders.order_num),3) OrderTotal
from Customers ,Orders 
where Customers.cust_id = Orders.cust_id 
order by cust_name,order_num;
全部评论

相关推荐

小红书 后端选手 n*16*1.18+签字费期权
点赞 评论 收藏
分享
找不到工作死了算了:没事的,雨英,hr肯主动告知结果已经超越大部分hr了
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务