PostgreSQL - Common Table Expressions
Given the query:
What is the output?
WITH cte AS MATERIALIZED (SELECT generate_series(1,3) AS num) SELECT num FROM cte, generate_series(1,2) AS gs(n);
What is the output?
