dbt - Advanced Patterns
Identify the error in this dbt model SQL snippet:
WITH recent_orders AS ( SELECT * FROM orders WHERE order_date > '2023-01-01' ), summary AS ( SELECT customer_id, SUM(amount) AS total FROM recent_orders ) SELECT * FROM summary
