RMIN (window)

Syntax

RMIN( value [ , direction ] )
RMIN( value [ , direction ]      [ 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 minimum of all values in a growing (or shrinking) window defined by the sort order and the value of direction:

directionWindow
"asc"Starts from the first row and ends at the current row.
"desc"Starts from the current row and ends at the last row.

By default "asc" is used.

Window functions with a similar behavior: RSUM, RCOUNT, RMAX, RAVG.

See also MIN, MMIN.

Argument types:

  • valueBoolean | Date | Datetime | Fractional number | Integer | String | UUID
  • directionString

Return type: Same type as (value)

Note

Only constant values are accepted for the arguments (direction).

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])RMIN(SUM([Orders]) TOTAL)RMIN(SUM([Orders]) WITHIN [City])RMIN(SUM([Orders]) AMONG [City])
'Detroit''Furniture'7777
'Detroit''Office Supplies'257725
'London''Furniture'1111
'London''Office Supplies'101110
'Moscow''Furniture'2121
'Moscow''Office Supplies'4124
'San Francisco''Furniture'5151
'San Francisco''Office Supplies'23154
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])RMIN(SUM([Orders]), "desc")RMIN(SUM([Orders]), "asc" ORDER BY [City] DESC)RMIN(SUM([Orders]) ORDER BY [Order Sum])
'Detroit'32666
'London'11666
'Moscow'6666
'San Francisco'2828286

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