@@ -15049,7 +15049,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
15049
15049
The result is <quote>false</> if the comparison returns false for every
15050
15050
subquery row (including the case where the subquery returns no
15051
15051
rows).
15052
- The result is NULL if the comparison does not return true for any row ,
15052
+ The result is NULL if no comparison with a subquery row returns true ,
15053
15053
and it returns NULL for at least one row.
15054
15054
</para>
15055
15055
@@ -15075,7 +15075,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
15075
15075
The result of <token>ALL</token> is <quote>true</> if all rows yield true
15076
15076
(including the case where the subquery returns no rows).
15077
15077
The result is <quote>false</> if any false result is found.
15078
- The result is NULL if the comparison does not return false for any row ,
15078
+ The result is NULL if no comparison with a subquery row returns false ,
15079
15079
and it returns NULL for at least one row.
15080
15080
</para>
15081
15081
@@ -15105,8 +15105,8 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
15105
15105
case where the subquery returns no rows).
15106
15106
The result is <quote>false</> if the comparison returns false for any
15107
15107
subquery row.
15108
- The result is NULL if the comparison does not return false for any
15109
- subquery row, and it returns NULL for at least one row.
15108
+ The result is NULL if no comparison with a subquery row returns false,
15109
+ and it returns NULL for at least one row.
15110
15110
</para>
15111
15111
15112
15112
<para>
0 commit comments