PostgreSQL - Common Table Expressions
What will be the output of this query?
WITH numbers AS (SELECT generate_series(1,3) AS num) SELECT num, num * num AS square FROM numbers;
