> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Calculates the minimum from `value` array according to the keys specified in the `key` array.

# minMap

<h2 id="minMappedArrays">
  minMappedArrays
</h2>

Introduced in: v20.5.0

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

<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.
</Note>

**Syntax**

```sql theme={null}
minMappedArrays(key, value)
minMappedArrays(Tuple(key, value))
```

**Arguments**

* `key` — Array of keys. [`Array(T)`](/reference/data-types/array)
* `value` — Array of values. [`Array(T)`](/reference/data-types/array)

**Returned value**

Returns a tuple of two arrays: keys in sorted order, and values calculated for the corresponding keys. [`Tuple(Array(T), Array(T))`](/reference/data-types/tuple)

**Examples**

**Usage example**

```sql title=Query theme={null}
SELECT minMappedArrays(a, b)
FROM VALUES('a Array(Int32), b Array(Int64)', ([1, 2], [2, 2]), ([2, 3], [1, 1]));
```

```response title=Response theme={null}
┌─minMappedArrays(a, b)───────────┐
│ ([1, 2, 3], [2, 1, 1])          │
└─────────────────────────────────┘
```
