Skip to content

Commit 6e62ec3

Browse files
authored
Merge pull request #4807 from rahulrao0209/patch-10
Clarify explanation of the ANY operator in tutorial
2 parents 4e40256 + 9386514 commit 6e62ec3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • content/postgresql/tutorial

‎content/postgresql/tutorial/any.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ Output:
253253
254254
```
255255

256-
It returns all the rows with the `employee` type because they have a value in the `salary` column less than any value in the set (55K, 58K, and 60K).
256+
It returns rows from the `employees` table whose `salary` is less than at least one value in the set (55K, 58K, and 60K). In this example, that means salaries less than 60K, which matches the 11 rows shown in the output.
257257

258258
## Summary
259259

0 commit comments

Comments
 (0)