WITH orders_with_total AS (SELECT order_id, SUM(total)GROUP BY order_id;
WITH orders_with_total AS (
SELECT order_id, SUM(total)
GROUP BY order_id;
本文档使用 全库网 构建