LAG
Description
LAG returns the row that precedes the current row by offset number of rows. It is possible to specify a column based ordering and partitioning. Null values are skipped.
Syntax
LAG ( column [, ORDER BY ( sort_column [sorting], ... )] [, PARTITION BY ( partition_column, ... )] [, offset ] )
column: The source column where preceding rows are taken from.
sort_column: Optional sorting column to specify an order.
sorting: Each of these columns can have an optional tag specifying the ordering of the column. Default is ascending:
ASC: Ascending order
DESC: Descending order
partition_column: Optional partition column to specify groups in which
LAG
should operate.offset: The number of non-NULL rows preceding the current row. The default value is 1.
Examples
[1] Simple example of | ||||||||||||||||
| ||||||||||||||||
|
[2] | ||||||||||||||||
| ||||||||||||||||
|
Ordering
One or more columns can be given to specify an ordering. This tells the LAG
function what the preceding element actually is. Optionally every column can be tagged as ascending or descending.
[3] | ||||||||||||||||||||||
| ||||||||||||||||||||||
|
[4] | ||||||||||||||||||||||
| ||||||||||||||||||||||
|
[5] | ||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||
|
Partitioning
The partition columns specify groups. The LAG
function operates independently within every group. This means when an ordering is given it is applied within every group and the last offset
elements in every group have a lagging value of null.
[6] | ||||||||||||||||||||||
| ||||||||||||||||||||||
|
[7] | ||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||
|
[8] | ||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||
|
NULL handling
The lagging value for a NULL value is the same value as the lagging value for the next non-NULL value. The offset parameter counts only non-NULL values.
[9] Example for | ||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||
|
[10] Offset ignores NULL values. | ||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||
|
Advanced Examples
[11] | ||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||
|
[12] It is possible to combine an arbitrary amount of order columns with an arbitrary amount of partition columns. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
[13] All optional parameters can be combined. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Use Cases
LAG
can be used for Machine Utilization in Production.