MMAX (window)

Syntax

MMAX( value, rows_1 [ , rows_2 ] )
MMAX( value, rows_1 [ , rows_2 ]      [ 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 the moving maximum of values in a fixed-size window defined by the sort order and arguments:

rows_1rows_2Window
positive-The current row and rows_1 preceding rows.
negative-The current row and -rows_1 following rows.
any signany signrows_1 preceding rows, the current row and rows_2 following rows.

Window functions with a similar behavior: MSUM, MCOUNT, MMIN, MAVG.

See also MAX, RMAX.

Argument types:

  • valueBoolean | Date | Datetime | Fractional number | Integer | String | UUID
  • rows_1Integer
  • rows_2Integer

Return type: Same type as (value)

Note

Only constant values are accepted for the arguments (rows_1, rows_2).

Examples

Example with two and three arguments

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])MMAX(SUM([Orders]), 1)MMAX(SUM([Orders]), -2)MMAX(SUM([Orders]) 1, 1)
'Detroit'32323232
'London'11322832
'Moscow'6112828
'San Francisco'28282828
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])MMAX(SUM([Orders]), 1 ORDER BY [City] DESC)MMAX(SUM([Orders]), 1 ORDER BY [Order Sum])
'Detroit'323232
'London'111111
'Moscow'6286
'San Francisco'282828
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])MMAX(SUM([Orders]), 1 TOTAL ORDER BY [City], [Category])MMAX(SUM([Orders]), 1 WITHIN [City] ORDER BY [Category])MMAX(SUM([Orders]), 1 AMONG [City] ORDER BY [City])
'Detroit''Furniture'7777
'Detroit''Office Supplies'25252525
'London''Furniture'12517
'London''Office Supplies'10101025
'Moscow''Furniture'21022
'Moscow''Office Supplies'44410
'San Francisco''Furniture'5555
'San Francisco''Office Supplies'23232323

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