@@ -13733,7 +13733,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
13733
13733
The result is <quote>false</> if the comparison returns false for every
13734
13734
subquery row (including the case where the subquery returns no
13735
13735
rows).
13736
- The result is NULL if the comparison does not return true for any row ,
13736
+ The result is NULL if no comparison with a subquery row returns true ,
13737
13737
and it returns NULL for at least one row.
13738
13738
</para>
13739
13739
@@ -13759,7 +13759,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
13759
13759
The result of <token>ALL</token> is <quote>true</> if all rows yield true
13760
13760
(including the case where the subquery returns no rows).
13761
13761
The result is <quote>false</> if any false result is found.
13762
- The result is NULL if the comparison does not return false for any row ,
13762
+ The result is NULL if no comparison with a subquery row returns false ,
13763
13763
and it returns NULL for at least one row.
13764
13764
</para>
13765
13765
@@ -13789,8 +13789,8 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
13789
13789
case where the subquery returns no rows).
13790
13790
The result is <quote>false</> if the comparison returns false for any
13791
13791
subquery row.
13792
- The result is NULL if the comparison does not return false for any
13793
- subquery row, and it returns NULL for at least one row.
13792
+ The result is NULL if no comparison with a subquery row returns false,
13793
+ and it returns NULL for at least one row.
13794
13794
</para>
13795
13795
13796
13796
<para>
0 commit comments