ClickHouse/docs/en/sql-reference/functions/tuple-map-functions.md

356 lines
12 KiB
Markdown
Raw Normal View History

---
toc_priority: 46
toc_title: Working with maps
---
# Functions for maps {#functions-for-working-with-tuple-maps}
## map {#function-map}
2021-02-11 07:15:18 +00:00
Arranges `key:value` pairs into [Map(key, value)](../../sql-reference/data-types/map.md) data type.
2021-07-29 15:20:55 +00:00
**Syntax**
```sql
map(key1, value1[, key2, value2, ...])
```
2021-07-29 15:20:55 +00:00
**Arguments**
- `key` — The key part of the pair. [String](../../sql-reference/data-types/string.md) or [Integer](../../sql-reference/data-types/int-uint.md).
- `value` — The value part of the pair. [String](../../sql-reference/data-types/string.md), [Integer](../../sql-reference/data-types/int-uint.md) or [Array](../../sql-reference/data-types/array.md).
**Returned value**
2021-02-11 07:15:18 +00:00
- Data structure as `key:value` pairs.
Type: [Map(key, value)](../../sql-reference/data-types/map.md).
**Examples**
Query:
```sql
SELECT map('key1', number, 'key2', number * 2) FROM numbers(3);
```
Result:
``` text
┌─map('key1', number, 'key2', multiply(number, 2))─┐
│ {'key1':0,'key2':0} │
│ {'key1':1,'key2':2} │
│ {'key1':2,'key2':4} │
└──────────────────────────────────────────────────┘
```
Query:
```sql
CREATE TABLE table_map (a Map(String, UInt64)) ENGINE = MergeTree() ORDER BY a;
INSERT INTO table_map SELECT map('key1', number, 'key2', number * 2) FROM numbers(3);
SELECT a['key2'] FROM table_map;
```
Result:
```text
┌─arrayElement(a, 'key2')─┐
│ 0 │
│ 2 │
│ 4 │
└─────────────────────────┘
```
2021-07-29 15:20:55 +00:00
**See Also**
- [Map(key, value)](../../sql-reference/data-types/map.md) data type
## mapAdd {#function-mapadd}
Collect all the keys and sum corresponding values.
**Syntax**
```sql
mapAdd(arg1, arg2 [, ...])
```
**Arguments**
2021-09-05 23:34:09 +00:00
Arguments are [maps](../../sql-reference/data-types/map.md) or [tuples](../../sql-reference/data-types/tuple.md#tuplet1-t2) of two [arrays](../../sql-reference/data-types/array.md#data-type-array), where items in the first array represent keys, and the second array contains values for the each key. All key arrays should have same type, and all value arrays should contain items which are promoted to the one type ([Int64](../../sql-reference/data-types/int-uint.md#int-ranges), [UInt64](../../sql-reference/data-types/int-uint.md#uint-ranges) or [Float64](../../sql-reference/data-types/float.md#float32-float64)). The common promoted type is used as a type for the result array.
**Returned value**
- Depending on the arguments returns one [map](../../sql-reference/data-types/map.md) or [tuple](../../sql-reference/data-types/tuple.md#tuplet1-t2), where the first array contains the sorted keys and the second array contains values.
**Example**
2021-09-06 12:36:20 +00:00
Query with a Tuple:
```sql
SELECT mapAdd(([toUInt8(1), 2], [1, 1]), ([toUInt8(1), 2], [1, 1])) as res, toTypeName(res) as type;
```
Result:
```text
┌─res───────────┬─type───────────────────────────────┐
│ ([1,2],[2,2]) │ Tuple(Array(UInt8), Array(UInt64)) │
└───────────────┴────────────────────────────────────┘
```
Query with `Map` type:
```sql
2021-07-21 08:08:29 +00:00
SELECT mapAdd(map(1,1), map(1,1));
```
Result:
```text
2021-07-21 08:08:29 +00:00
┌─mapAdd(map(1, 1), map(1, 1))─┐
│ {1:2} │
└──────────────────────────────┘
```
## mapSubtract {#function-mapsubtract}
Collect all the keys and subtract corresponding values.
2021-07-21 08:08:29 +00:00
**Syntax**
```sql
mapSubtract(Tuple(Array, Array), Tuple(Array, Array) [, ...])
```
2021-07-21 08:08:29 +00:00
**Arguments**
2021-07-21 08:08:29 +00:00
Arguments are [maps](../../sql-reference/data-types/map.md) or [tuples](../../sql-reference/data-types/tuple.md#tuplet1-t2) of two [arrays](../../sql-reference/data-types/array.md#data-type-array), where items in the first array represent keys, and the second array contains values for the each key. All key arrays should have same type, and all value arrays should contain items which are promote to the one type ([Int64](../../sql-reference/data-types/int-uint.md#int-ranges), [UInt64](../../sql-reference/data-types/int-uint.md#uint-ranges) or [Float64](../../sql-reference/data-types/float.md#float32-float64)). The common promoted type is used as a type for the result array.
**Returned value**
2021-07-21 08:08:29 +00:00
- Depending on the arguments returns one [map](../../sql-reference/data-types/map.md) or [tuple](../../sql-reference/data-types/tuple.md#tuplet1-t2), where the first array contains the sorted keys and the second array contains values.
**Example**
2021-07-21 08:08:29 +00:00
Query with a tuple map:
```sql
SELECT mapSubtract(([toUInt8(1), 2], [toInt32(1), 1]), ([toUInt8(1), 2], [toInt32(2), 1])) as res, toTypeName(res) as type;
```
Result:
```text
┌─res────────────┬─type──────────────────────────────┐
│ ([1,2],[-1,0]) │ Tuple(Array(UInt8), Array(Int64)) │
└────────────────┴───────────────────────────────────┘
2020-09-23 13:12:13 +00:00
```
2021-07-21 08:08:29 +00:00
Query with `Map` type:
```sql
2021-07-21 08:08:29 +00:00
SELECT mapSubtract(map(1,1), map(1,1));
```
Result:
```text
2021-07-21 08:08:29 +00:00
┌─mapSubtract(map(1, 1), map(1, 1))─┐
│ {1:0} │
└───────────────────────────────────┘
```
## mapPopulateSeries {#function-mappopulateseries}
Fills missing keys in the maps (key and value array pair), where keys are integers. Also, it supports specifying the max key, which is used to extend the keys array.
2021-07-21 08:08:29 +00:00
Arguments are [maps](../../sql-reference/data-types/map.md) or two [arrays](../../sql-reference/data-types/array.md#data-type-array), where the first array represent keys, and the second array contains values for the each key.
2021-07-21 08:08:29 +00:00
For array arguments the number of elements in `keys` and `values` must be the same for each row.
**Syntax**
```sql
mapPopulateSeries(keys, values[, max])
2021-07-21 08:08:29 +00:00
mapPopulateSeries(map[, max])
```
2021-07-21 08:08:29 +00:00
Generates a map (a tuple with two arrays or a value of `Map` type, depending on the arguments), where keys are a series of numbers, from minimum to maximum keys (or `max` argument if it specified) taken from the map with a step size of one, and corresponding values. If the value is not specified for the key, then it uses the default value in the resulting map. For repeated keys, only the first value (in order of appearing) gets associated with the key.
**Arguments**
2021-07-21 08:08:29 +00:00
Mapped arrays:
- `keys` — Array of keys. [Array](../../sql-reference/data-types/array.md#data-type-array)([Int](../../sql-reference/data-types/int-uint.md#uint-ranges)).
- `values` — Array of values. [Array](../../sql-reference/data-types/array.md#data-type-array)([Int](../../sql-reference/data-types/int-uint.md#uint-ranges)).
2021-07-21 08:08:29 +00:00
or
- `map` — Map with integer keys. [Map](../../sql-reference/data-types/map.md).
**Returned value**
2021-07-21 08:08:29 +00:00
- Depending on the arguments returns a [map](../../sql-reference/data-types/map.md) or a [tuple](../../sql-reference/data-types/tuple.md#tuplet1-t2) of two [arrays](../../sql-reference/data-types/array.md#data-type-array): keys in sorted order, and values the corresponding keys.
**Example**
2021-07-21 08:08:29 +00:00
Query with mapped arrays:
```sql
select mapPopulateSeries([1,2,4], [11,22,44], 5) as res, toTypeName(res) as type;
```
Result:
2020-09-23 13:12:13 +00:00
```text
┌─res──────────────────────────┬─type──────────────────────────────┐
│ ([1,2,3,4,5],[11,22,0,44,0]) │ Tuple(Array(UInt8), Array(UInt8)) │
└──────────────────────────────┴───────────────────────────────────┘
```
2021-07-21 08:08:29 +00:00
Query with `Map` type:
```sql
2021-07-21 08:08:29 +00:00
SELECT mapPopulateSeries(map(1, 10, 5, 20), 6);
```
Result:
```text
2021-07-21 08:08:29 +00:00
┌─mapPopulateSeries(map(1, 10, 5, 20), 6)─┐
│ {1:10,2:0,3:0,4:0,5:20,6:0} │
└─────────────────────────────────────────┘
```
2021-02-10 12:55:18 +00:00
## mapContains {#mapcontains}
2021-02-21 12:01:10 +00:00
Determines whether the `map` contains the `key` parameter.
2021-02-10 12:55:18 +00:00
**Syntax**
```sql
2021-02-10 12:55:18 +00:00
mapContains(map, key)
```
2021-07-21 08:08:29 +00:00
**Parameters**
2021-02-10 12:55:18 +00:00
2021-02-21 12:01:10 +00:00
- `map` — Map. [Map](../../sql-reference/data-types/map.md).
2021-02-21 12:22:48 +00:00
- `key` — Key. Type matches the type of keys of `map` parameter.
2021-02-10 12:55:18 +00:00
**Returned value**
2021-02-21 12:01:10 +00:00
- `1` if `map` contains `key`, `0` if not.
2021-02-10 12:55:18 +00:00
Type: [UInt8](../../sql-reference/data-types/int-uint.md).
**Example**
Query:
2021-02-11 08:46:31 +00:00
```sql
CREATE TABLE test (a Map(String,String)) ENGINE = Memory;
INSERT INTO test VALUES ({'name':'eleven','age':'11'}), ({'number':'twelve','position':'6.0'});
SELECT mapContains(a, 'name') FROM test;
```
Result:
```text
┌─mapContains(a, 'name')─┐
│ 1 │
│ 0 │
└────────────────────────┘
```
## mapKeys {#mapkeys}
2021-02-21 12:01:10 +00:00
Returns all keys from the `map` parameter.
2021-02-11 08:46:31 +00:00
2021-06-29 13:27:54 +00:00
Can be optimized by enabling the [optimize_functions_to_subcolumns](../../operations/settings/settings.md#optimize-functions-to-subcolumns) setting. With `optimize_functions_to_subcolumns = 1` the function reads only [keys](../../sql-reference/data-types/map.md#map-subcolumns) subcolumn instead of reading and processing the whole column data. The query `SELECT mapKeys(m) FROM table` transforms to `SELECT m.keys FROM table`.
2021-06-23 00:15:11 +00:00
2021-02-11 08:46:31 +00:00
**Syntax**
```sql
mapKeys(map)
```
**Parameters**
2021-02-21 12:01:10 +00:00
- `map` — Map. [Map](../../sql-reference/data-types/map.md).
2021-02-11 08:46:31 +00:00
**Returned value**
2021-02-21 12:01:10 +00:00
- Array containing all keys from the `map`.
2021-02-11 08:46:31 +00:00
Type: [Array](../../sql-reference/data-types/array.md).
**Example**
Query:
```sql
CREATE TABLE test (a Map(String,String)) ENGINE = Memory;
INSERT INTO test VALUES ({'name':'eleven','age':'11'}), ({'number':'twelve','position':'6.0'});
SELECT mapKeys(a) FROM test;
```
Result:
2021-02-10 12:55:18 +00:00
2021-02-11 08:46:31 +00:00
```text
┌─mapKeys(a)────────────┐
│ ['name','age'] │
│ ['number','position'] │
└───────────────────────┘
```
2021-02-10 12:55:18 +00:00
## mapValues {#mapvalues}
2021-02-21 12:01:10 +00:00
Returns all values from the `map` parameter.
2021-02-11 08:46:31 +00:00
2021-06-29 13:27:54 +00:00
Can be optimized by enabling the [optimize_functions_to_subcolumns](../../operations/settings/settings.md#optimize-functions-to-subcolumns) setting. With `optimize_functions_to_subcolumns = 1` the function reads only [values](../../sql-reference/data-types/map.md#map-subcolumns) subcolumn instead of reading and processing the whole column data. The query `SELECT mapValues(m) FROM table` transforms to `SELECT m.values FROM table`.
2021-06-23 00:15:11 +00:00
2021-02-11 08:46:31 +00:00
**Syntax**
```sql
mapKeys(map)
```
**Parameters**
2021-02-21 12:01:10 +00:00
- `map` — Map. [Map](../../sql-reference/data-types/map.md).
2021-02-11 08:46:31 +00:00
**Returned value**
- Array containing all the values from `map`.
Type: [Array](../../sql-reference/data-types/array.md).
**Example**
Query:
```sql
CREATE TABLE test (a Map(String,String)) ENGINE = Memory;
INSERT INTO test VALUES ({'name':'eleven','age':'11'}), ({'number':'twelve','position':'6.0'});
SELECT mapValues(a) FROM test;
```
Result:
```text
┌─mapValues(a)─────┐
│ ['eleven','11'] │
│ ['twelve','6.0'] │
└──────────────────┘
```
2021-02-11 09:21:59 +00:00
[Original article](https://clickhouse.tech/docs/en/sql-reference/functions/tuple-map-functions/) <!--hide-->