bb0fad1dbe
* refactor: rename flinksql to flink * refactor: rename pgsql to postgresql * refactor: rename trinosql to trino * refactor: replace all default exports with named export * refactor: rename basicParser to basicSQL * refactor: rename basic-parser-types to types * refactor: replace arrow func with plain func
7 lines
157 B
SQL
7 lines
157 B
SQL
WITH orders_with_total AS (
|
|
SELECT order_id, price + tax AS total
|
|
FROM Orders
|
|
)
|
|
SELECT order_id, SUM(total)
|
|
FROM orders_with_total
|
|
GROUP BY order_id; |