@@ -15246,7 +15246,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
15246
15246
The result is <quote>false</quote> if the comparison returns false for every
15247
15247
subquery row (including the case where the subquery returns no
15248
15248
rows).
15249
- The result is NULL if the comparison does not return true for any row ,
15249
+ The result is NULL if no comparison with a subquery row returns true ,
15250
15250
and it returns NULL for at least one row.
15251
15251
</para>
15252
15252
@@ -15272,7 +15272,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
15272
15272
The result of <token>ALL</token> is <quote>true</quote> if all rows yield true
15273
15273
(including the case where the subquery returns no rows).
15274
15274
The result is <quote>false</quote> if any false result is found.
15275
- The result is NULL if the comparison does not return false for any row ,
15275
+ The result is NULL if no comparison with a subquery row returns false ,
15276
15276
and it returns NULL for at least one row.
15277
15277
</para>
15278
15278
@@ -15302,8 +15302,8 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
15302
15302
case where the subquery returns no rows).
15303
15303
The result is <quote>false</quote> if the comparison returns false for any
15304
15304
subquery row.
15305
- The result is NULL if the comparison does not return false for any
15306
- subquery row, and it returns NULL for at least one row.
15305
+ The result is NULL if no comparison with a subquery row returns false,
15306
+ and it returns NULL for at least one row.
15307
15307
</para>
15308
15308
15309
15309
<para>
0 commit comments