LAG (window)

Syntax

LAG( value [ , offset [ , default ] ] )
LAG( value [ , offset [ , default ] ]     [ TOTAL | WITHIN ... | AMONG ... ]     [ ORDER BY ... ]     [ BEFORE FILTER BY ... ]   )

More info:

Description

Warning

The sorting order is based on the fields listed in the sorting section of the chart and in the ORDER BY clause. First, ORDER BY fields are used, and then they are complemented by the fields from the chart.

Returns value re-evaluated against the row that is offset from the current row by offset within the specified window:

  • Positive offset seeks among preceding rows.
  • Negative offset seeks among following rows.

By default offset is 1.

If there is no available value (offset reaches before the first row or after the last one), then default is returned. If default is not specified, then NULL is used.

See also AGO for a non-window function alternative.

Argument types:

  • valueAny
  • offsetInteger
  • defaultAny

Return type: Same type as (value)

Note

Only constant values are accepted for the arguments (offset, default).

Examples

Example with grouping

Source data

DateCityCategoryOrdersProfit
'2019-03-01''London''Office Supplies'8120.80
'2019-03-04''London''Office Supplies'2100.00
'2019-03-05''London''Furniture'1750.00
'2019-03-02''Moscow''Furniture'21250.50
'2019-03-03''Moscow''Office Supplies'485.00
'2019-03-01''San Francisco''Office Supplies'23723.00
'2019-03-01''San Francisco''Furniture'11000.00
'2019-03-03''San Francisco''Furniture'44000.00
'2019-03-02''Detroit''Furniture'53700.00
'2019-03-04''Detroit''Office Supplies'251200.00
'2019-03-04''Detroit''Furniture'23500.00

Grouped by [City], [Category].

Sorted by [City], [Category].

Result

[City][Category]SUM([Orders])LAG(SUM([Orders]) TOTAL)LAG(SUM([Orders]) WITHIN [City])LAG(SUM([Orders]) AMONG [City])
'Detroit''Furniture'7NULLNULLNULL
'Detroit''Office Supplies'2577NULL
'London''Furniture'125NULL7
'London''Office Supplies'101125
'Moscow''Furniture'210NULL1
'Moscow''Office Supplies'42210
'San Francisco''Furniture'54NULL2
'San Francisco''Office Supplies'23554
Example with the optional argument

Source data

DateCityCategoryOrdersProfit
'2019-03-01''London''Office Supplies'8120.80
'2019-03-04''London''Office Supplies'2100.00
'2019-03-05''London''Furniture'1750.00
'2019-03-02''Moscow''Furniture'21250.50
'2019-03-03''Moscow''Office Supplies'485.00
'2019-03-01''San Francisco''Office Supplies'23723.00
'2019-03-01''San Francisco''Furniture'11000.00
'2019-03-03''San Francisco''Furniture'44000.00
'2019-03-02''Detroit''Furniture'53700.00
'2019-03-04''Detroit''Office Supplies'251200.00
'2019-03-04''Detroit''Furniture'23500.00

Grouped by [City].

Sorted by [City].

Result

[City]SUM([Orders])LAG(SUM([Orders]), 1)LAG(SUM([Orders]), -2)
'Detroit'32NULL6
'London'113228
'Moscow'611NULL
'San Francisco'286NULL
Example with ORDER BY

Source data

DateCityCategoryOrdersProfit
'2019-03-01''London''Office Supplies'8120.80
'2019-03-04''London''Office Supplies'2100.00
'2019-03-05''London''Furniture'1750.00
'2019-03-02''Moscow''Furniture'21250.50
'2019-03-03''Moscow''Office Supplies'485.00
'2019-03-01''San Francisco''Office Supplies'23723.00
'2019-03-01''San Francisco''Furniture'11000.00
'2019-03-03''San Francisco''Furniture'44000.00
'2019-03-02''Detroit''Furniture'53700.00
'2019-03-04''Detroit''Office Supplies'251200.00
'2019-03-04''Detroit''Furniture'23500.00

Grouped by [City].

Sorted by [City].

Result

[City]SUM([Orders])LAG(SUM([Orders]) ORDER BY [City] DESC)LAG(SUM([Orders]) ORDER BY [Order Sum])
'Detroit'321128
'London'1166
'Moscow'628NULL
'San Francisco'28NULL11

Data source support

ClickHouse 21.8, Microsoft SQL Server 2017 (14.0), MySQL 5.7, Oracle Database 12c (12.1), PostgreSQL 9.3.

Previous
Next