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

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

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

/* 方法1:用符合直觉的连表实现 
SELECT
    cust_id,
    SUM(oi.item_price * oi.quantity) AS total_ordered
FROM
    Orders o
INNER JOIN
    OrderItems oi ON oi.order_num = o.order_num
GROUP BY
    cust_id
ORDER BY
    total_ordered DESC
;
*/

/* 方法2:使用子查询的方式 */
SELECT
    cust_id,
    (
        SELECT
            SUM(item_price * quantity)
        FROM
            OrderItems oi
        WHERE
            oi.order_num = o.order_num
    ) AS total_ordered
FROM
    Orders o
ORDER BY
    total_ordered DESC
;

全部评论

相关推荐

宇算唯航:目测实缴资本不超100W的小公司
点赞 评论 收藏
分享
深夜书店vv:腾讯是这样的,去年很多走廊都加桌子当工区
点赞 评论 收藏
分享
认真搞学习:这么良心的老板真少见
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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