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

This commit is contained in:
Raúl Marín 2024-07-11 12:06:33 +02:00 committed by GitHub
parent 3d96bf298c
commit 330082c3d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,7 +11,7 @@ Returns the last value evaluated within its ordered frame. By default, NULL argu
**Syntax**
```sql
last_value (column_name) [RESPECT NULLS]
last_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