题解 | #确定最佳顾客的另一种方式(二)#

确定最佳顾客的另一种方式(二)

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

select
    max(c.cust_name) as cust_name,
    sum(b.item_price * b.quantity) as total_price
from
    Orders a
    join OrderItems b on a.order_num = b.order_num
    join Customers c on a.cust_id = c.cust_id
group by
    a.order_num,
    c.cust_id
having
    sum(b.item_price * b.quantity) >= 1000

说实话,这个必知必会前面一道题,给了我心里阴影,让我写出这种丧心病狂的SQL(正常思维都不会全连接在一起,都是分步骤来搞,那样逻辑清晰一些)

前面有一道题(一个用户的订单可以重复,那订单是不是可以属于多个用户?一个订单的商品可以重复出现(不包含价格啊什么的那种,仅仅是说明这个订单有这个商品),到底怎样作者没说),搞得我现在写这些题说实话我都害怕,对题作者实在是真服了,不敢恭维

全部评论

相关推荐

投递华为等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务