@@ -12848,7 +12848,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
12848
12848
The result is <quote>false</> if the comparison returns false for every
12849
12849
subquery row (including the case where the subquery returns no
12850
12850
rows).
12851
- The result is NULL if the comparison does not return true for any row ,
12851
+ The result is NULL if no comparison with a subquery row returns true ,
12852
12852
and it returns NULL for at least one row.
12853
12853
</para>
12854
12854
@@ -12874,7 +12874,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
12874
12874
The result of <token>ALL</token> is <quote>true</> if all rows yield true
12875
12875
(including the case where the subquery returns no rows).
12876
12876
The result is <quote>false</> if any false result is found.
12877
- The result is NULL if the comparison does not return false for any row ,
12877
+ The result is NULL if no comparison with a subquery row returns false ,
12878
12878
and it returns NULL for at least one row.
12879
12879
</para>
12880
12880
@@ -12904,8 +12904,8 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
12904
12904
case where the subquery returns no rows).
12905
12905
The result is <quote>false</> if the comparison returns false for any
12906
12906
subquery row.
12907
- The result is NULL if the comparison does not return false for any
12908
- subquery row, and it returns NULL for at least one row.
12907
+ The result is NULL if no comparison with a subquery row returns false,
12908
+ and it returns NULL for at least one row.
12909
12909
</para>
12910
12910
12911
12911
<para>
0 commit comments