Ihar Hancharenka d1cbde5d9c m
2023-03-30 18:24:02 +03:00

15 строки
233 B
Plaintext

https://www.postgresql.org/docs/current/queries-with.html
with some_name as(...)
select ... from some_name;
with recursive some_name(
... from some_name ...
)
...
with
name1(p11, p12, ...)
name2(p21, p22, ...)
...