Quantcast
Channel: Active questions tagged cte - Database Administrators Stack Exchange
Viewing all articles
Browse latest Browse all 207

Why does a Postgres recursive CTE need the list of columns as argument?

$
0
0

This is kind of a subjective question.

If I have a recursive CTE something like:

WITH RECURSIVE r(x, y) AS ( ...    SELECT x, y -- select1    FROM t WHERE ..     UNION    SELECT t.x, t.y -- select2    FROM r JOIN t    ON ...)SELECT x, yFROM r

What exactly is the point of specifying the list of columns as an argument in the CTE definition? If I don't specify it, it anyways takes the list of columns in the SELECT.

If I do specify it, every time I want to make changes, I have to reflect that in both the SELECTs in the CTE and also in the argument list.

What benefit do I gain from writing WITH RECURSIVE r(x, y) AS instead of just WITH RECURSIVE r AS?


Viewing all articles
Browse latest Browse all 207

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>