@@ -14620,7 +14620,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
14620
14620
The result is <quote>false</> if the comparison returns false for every
14621
14621
subquery row (including the case where the subquery returns no
14622
14622
rows).
14623
- The result is NULL if the comparison does not return true for any row ,
14623
+ The result is NULL if no comparison with a subquery row returns true ,
14624
14624
and it returns NULL for at least one row.
14625
14625
</para>
14626
14626
@@ -14646,7 +14646,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
14646
14646
The result of <token>ALL</token> is <quote>true</> if all rows yield true
14647
14647
(including the case where the subquery returns no rows).
14648
14648
The result is <quote>false</> if any false result is found.
14649
- The result is NULL if the comparison does not return false for any row ,
14649
+ The result is NULL if no comparison with a subquery row returns false ,
14650
14650
and it returns NULL for at least one row.
14651
14651
</para>
14652
14652
@@ -14676,8 +14676,8 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
14676
14676
case where the subquery returns no rows).
14677
14677
The result is <quote>false</> if the comparison returns false for any
14678
14678
subquery row.
14679
- The result is NULL if the comparison does not return false for any
14680
- subquery row, and it returns NULL for at least one row.
14679
+ The result is NULL if no comparison with a subquery row returns false,
14680
+ and it returns NULL for at least one row.
14681
14681
</para>
14682
14682
14683
14683
<para>
0 commit comments