@@ -15192,7 +15192,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
15192
15192
The result is <quote>false</quote> if the comparison returns false for every
15193
15193
subquery row (including the case where the subquery returns no
15194
15194
rows).
15195
- The result is NULL if the comparison does not return true for any row ,
15195
+ The result is NULL if no comparison with a subquery row returns true ,
15196
15196
and it returns NULL for at least one row.
15197
15197
</para>
15198
15198
@@ -15218,7 +15218,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
15218
15218
The result of <token>ALL</token> is <quote>true</quote> if all rows yield true
15219
15219
(including the case where the subquery returns no rows).
15220
15220
The result is <quote>false</quote> if any false result is found.
15221
- The result is NULL if the comparison does not return false for any row ,
15221
+ The result is NULL if no comparison with a subquery row returns false ,
15222
15222
and it returns NULL for at least one row.
15223
15223
</para>
15224
15224
@@ -15248,8 +15248,8 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
15248
15248
case where the subquery returns no rows).
15249
15249
The result is <quote>false</quote> if the comparison returns false for any
15250
15250
subquery row.
15251
- The result is NULL if the comparison does not return false for any
15252
- subquery row, and it returns NULL for at least one row.
15251
+ The result is NULL if no comparison with a subquery row returns false,
15252
+ and it returns NULL for at least one row.
15253
15253
</para>
15254
15254
15255
15255
<para>
0 commit comments