PostgreSQL - Common Table Expressions
You wrote:
Why does this query cause a syntax error?
WITH cte AS (SELECT * FROM table) MATERIALIZED SELECT * FROM cte;
Why does this query cause a syntax error?
