WITH clause

    1. WITH orders_with_total AS (
    2. SELECT order_id, SUM(total)
    3. GROUP BY order_id;