I'm trying to use: ```WITH cte (col1, col2) AS ( ...
# suiteql
a
I'm trying to use:
Copy code
WITH cte (col1, col2) AS
(
  SELECT 1, 2
  UNION ALL
  SELECT 3, 4
)
SELECT col1, col2 FROM cte
but it gives me an error