last_value
aggregate function
Applies to: Databricks SQL Databricks Runtime
Returns the last value of expr
for the group of rows. The function is a synonym for last aggregate function.
Syntax
last_value(expr [, ignoreNull] ) [FILTER ( WHERE cond ) ] [ IGNORE NULLS | RESPECT NULLS ]
This function can also be invoked as a window function using the OVER
clause.
Arguments
expr
: An expression of any type.ignoreNull
: An optionalBOOLEAN
literal defaulting to false.cond
: An optional boolean expression filtering the rows used for aggregation.IGNORE NULLS
orRESPECT NULLS
: WhenIGNORE NULLS
is used orignoreNull
istrue
, anyexpr
value that isNULL
is ignored. The default isRESPECT NULLS
.