2020-06-18 08:24:31 +00:00
---
2022-08-28 14:53:34 +00:00
slug: /en/sql-reference/aggregate-functions/reference/minmap
2024-06-24 12:32:52 +00:00
sidebar_position: 169
2020-06-18 08:24:31 +00:00
---
2022-06-02 10:55:18 +00:00
# minMap
2020-06-18 08:24:31 +00:00
Calculates the minimum from `value` array according to the keys specified in the `key` array.
2024-07-06 17:37:00 +00:00
**Syntax**
```sql
`minMap(key, value)`
```
or
```sql
minMap(Tuple(key, value))
```
Alias: `minMappedArrays`
2020-06-18 08:24:31 +00:00
2024-07-06 17:37:00 +00:00
:::note
- Passing a tuple of keys and value arrays is identical to passing an array of keys and an array of values.
- The number of elements in `key` and `value` must be the same for each row that is totaled.
:::
2020-06-18 08:24:31 +00:00
2024-07-06 17:37:00 +00:00
**Parameters**
2020-06-18 08:24:31 +00:00
2024-07-06 17:37:00 +00:00
- `key` — Array of keys. [Array ](../../data-types/array.md ).
- `value` — Array of values. [Array ](../../data-types/array.md ).
**Returned value**
- Returns a tuple of two arrays: keys in sorted order, and values calculated for the corresponding keys. [Tuple ](../../data-types/tuple.md )([Array](../../data-types/array.md), [Array ](../../data-types/array.md )).
**Example**
Query:
2020-06-18 08:24:31 +00:00
``` sql
SELECT minMap(a, b)
FROM values('a Array(Int32), b Array(Int64)', ([1, 2], [2, 2]), ([2, 3], [1, 1]))
```
2024-07-06 17:37:00 +00:00
Result:
2020-06-18 08:24:31 +00:00
``` text
┌─minMap(a, b)──────┐
│ ([1,2,3],[2,1,1]) │
└───────────────────┘
```