Update docs/en/sql-reference/window-functions/first_value.md

This commit is contained in:
Raúl Marín 2024-07-11 12:06:04 +02:00 committed by GitHub
parent 41633cabb2
commit 595bce4945
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,7 +11,7 @@ Returns the first value evaluated within its ordered frame. By default, NULL arg
**Syntax**
```sql
first_value (column_name) [RESPECT NULLS]
first_value (column_name) [[RESPECT NULLS] | [IGNORE NULLS]]
OVER ([[PARTITION BY grouping_column] [ORDER BY sorting_column]
[ROWS or RANGE expression_to_bound_rows_withing_the_group]] | [window_name])
FROM table_name