With recusive miss syntax definition

From: PG Doc comments form <noreply(at)postgresql(dot)org>
To: pgsql-docs(at)lists(dot)postgresql(dot)org
Cc: domenico(dot)l76(at)gmail(dot)com
Subject: With recusive miss syntax definition
Date: 2023-08-02 21:02:55
Message-ID: 169101017576.637.16565798050982453524@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/15/queries-with.html
Description:

In this page seems to miss link to with sintax.
Specially for with recursive.
I'm looking for an more complicated example like that:
with first_query as (
), recusive_second_query as (
select fields from first_query
union all
select fields from second_query
join other query
)

But it seems "recusive" could be used just for first query.

But this information should be explained

Browse pgsql-docs by date

  From Date Subject
Next Message PG Doc comments form 2023-08-08 09:10:46 U+200B ZERO WIDTH SPACE (0xe2 0x80 0x8b) in PostgreSQL documentation
Previous Message PG Doc comments form 2023-08-02 19:54:08 3.6 Inheritance Documentation