diff options
-rw-r--r-- | doc/src/sgml/queries.sgml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/src/sgml/queries.sgml b/doc/src/sgml/queries.sgml index 18a9e79259f..5366f1f7e6d 100644 --- a/doc/src/sgml/queries.sgml +++ b/doc/src/sgml/queries.sgml @@ -2110,9 +2110,8 @@ SELECT sum(n) FROM t; <note> <para> - Strictly speaking, this process is iteration not recursion, but - <literal>RECURSIVE</literal> is the terminology chosen by the SQL standards - committee. + While <literal>RECURSIVE</literal> allows queries to be specified + recursively, internally all queries are evaluated iteratively. </para> </note> |