PostgreSQL - Common Table Expressions
What is wrong with this CTE usage?
WITH cte AS (SELECT * FROM orders) SELECT * FROM cte WHERE order_date > '2023-01-01' AND cte.customer_id;
