Skip to content

Commit 0f34ce7

Browse files
committed
document aggregate index utilization
1 parent 15585bc commit 0f34ce7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/cosmos-db/sql-query-aggregates.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.author: tisande
1010
---
1111
# Aggregate functions in Azure Cosmos DB
1212

13-
Aggregate functions perform a calculation on a set of values in the SELECT clause and return a single value. For example, the following query returns the count of items within the `Families` container:
13+
Aggregate functions perform a calculation on a set of values in the `SELECT` clause and return a single value. For example, the following query returns the count of items within the `Families` container:
1414

1515
## Examples
1616

@@ -56,7 +56,7 @@ The results are:
5656

5757
## Types of aggregate functions
5858

59-
The SQL API supports the following aggregate functions. SUM and AVG operate on numeric values, and COUNT, MIN, and MAX work on numbers, strings, Booleans, and nulls.
59+
The SQL API supports the following aggregate functions. `SUM` and `AVG` operate on numeric values, and `COUNT`, `MIN`, and `MAX` work on numbers, strings, Booleans, and nulls.
6060

6161
| Function | Description |
6262
|-------|-------------|
@@ -73,7 +73,7 @@ You can also aggregate over the results of an array iteration.
7373
7474
## Remarks
7575

76-
These aggregate system functions will benefit from a [range index](index-policy.md#includeexclude-strategy). If you expect to do a COUNT, SUM, MIN, MAX, or AVG on a property, you should [include the relevant path in the indexing policy](index-policy.md#includeexclude-strategy).
76+
These aggregate system functions will benefit from a [range index](index-policy.md#includeexclude-strategy). If you expect to do a `COUNT`, `SUM`, `MIN`, `MAX`, or `AVG` on a property, you should [include the relevant path in the indexing policy](index-policy.md#includeexclude-strategy).
7777

7878
## Next steps
7979

0 commit comments

Comments
 (0)