This commit is contained in:
Vanessa Sabino 2022-01-19 09:55:47 -05:00 коммит произвёл Mark Reid
Родитель b9103f89e2
Коммит 4bb196f416
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -172,7 +172,7 @@ Another way to improve query performance is to select a subset of data on a fiel
For example, if you wanted to get all of ages greater than age 40 in the table above, you might query like this:
```sql
SELECT age FROM people WHERE age > 45
SELECT age FROM people WHERE age > 40
```
This would scan all of the `age` field, starting from `27`, then `45`, and ending with `5`.