Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/t-sql/functions/first-value-transact-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ FIRST_VALUE ( [scalar_expression ] ) [ IGNORE NULLS | RESPECT NULLS ]
[ IGNORE NULLS | RESPECT NULLS ]
**Applies to**: Azure SQL Edge

IGNORE NULLS - Ignore null values in the dataset when computing the last value over a partition.
RESPECT NULLS - Respect null values in the dataset when computing last value over a partition.
IGNORE NULLS - Ignore null values in the dataset when computing the first value over a partition.
RESPECT NULLS - Respect null values in the dataset when computing first value over a partition.

For more information, see [Imputing missing values](/azure/azure-sql-edge/imputing-missing-values/).

Expand Down