Skip to content
ClickHouse Docs
ClickHouse DocsClickHouse Docs

maxMap

maxMappedArrays

Introduced in: v20.5.0

Calculates the maximum from value array according to the keys specified in the key array.

Syntax

maxMappedArrays(key, value)
maxMappedArrays(Tuple(key, value))

Arguments

Returned value

Returns a tuple of two arrays: keys in sorted order, and values calculated for the corresponding keys. Tuple(Array(T), Array(T))

Examples

Usage example

SELECT maxMappedArrays(a, b)
FROM VALUES('a Array(Char), b Array(Int64)', (['x', 'y'], [2, 2]), (['y', 'z'], [3, 1]));
┌─maxMappedArrays(a, b)───┐
│ (['x','y','z'],[2,3,1]) │
└─────────────────────────┘
Navigation