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

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

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

SELECT
    cust_id,
    SUM(total_ordered) AS total_ordered
FROM
    (
        SELECT
            o.cust_id,
            (
                SELECT
                    SUM(oi.item_price * oi.quantity)
                FROM
                    OrderItems oi
                WHERE
                    oi.order_num = o.order_num
            ) AS total_ordered
        FROM
            Orders o
    ) AS subquery
GROUP BY
    cust_id
ORDER BY
    total_ordered DESC;

全部评论

相关推荐

斑驳不同:还为啥暴躁 假的不骂你骂谁啊
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务