题解 | #SQL87#

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

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

select c.cust_name, o1.order_num, (o2.quantity*o2.item_price) as OrderTotal
from Orders o1
left join Customers c on c.cust_id = o1.cust_id
left join OrderItems o2 on o1.order_num = o2.order_num
order by cust_name,order_num asc;

一种三表联合查询的方式。

全部评论

相关推荐

重生我想学测开:嵌入式的问题,我准备入行京东外卖了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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