LAG()
Value from row in the current partition with a given offset before the current row
The same as type as expr
LAG ( <expr> [, <offset [, <default>]]) OVER <window_name_or_spec>
Argument | Description |
---|---|
expr |
Expression.May contain a table column, constant, variable, expression, scalar function.Aggregate functions are not allowed as an expression. |
offset |
The offset in rows before the current row to get the value identified by expr.If offset is not specified, the default is |
default |
The default value to return if offset points outside the partition.Default is |
The LAG
function provides access to the row in the current partition with a given offset before the current row.
If offset points outside the current partition, default will be returned, or NULL
if no default was specified.