2020-11-27 19:37:44 +00:00
---
toc_priority: 66
toc_title: Tuples
---
# Functions for Working with Tuples {#tuple-functions}
2020-11-28 11:38:57 +00:00
## tuple {#tuple}
2020-11-27 19:37:44 +00:00
A function that allows grouping multiple columns.
For columns with the types T1, T2, …, it returns a Tuple(T1, T2, …) type tuple containing these columns. There is no cost to execute the function.
Tuples are normally used as intermediate values for an argument of IN operators, or for creating a list of formal parameters of lambda functions. Tuples can’ t be written to a table.
2020-11-28 11:38:57 +00:00
The function implements the operator `(x, y, …)` .
2020-11-27 19:37:44 +00:00
**Syntax**
``` sql
tuple(x, y, …)
```
2020-11-28 11:38:57 +00:00
## tupleElement {#tupleelement}
2020-11-27 19:37:44 +00:00
A function that allows getting a column from a tuple.
‘ N’ is the column index, starting from 1. N must be a constant. ‘ N’ must be a constant. ‘ N’ must be a strict postive integer no greater than the size of the tuple.
There is no cost to execute the function.
2020-11-28 11:38:57 +00:00
The function implements the operator `x.N` .
2020-11-27 19:37:44 +00:00
**Syntax**
``` sql
tupleElement(tuple, n)
```
2020-11-28 11:38:57 +00:00
## untuple {#untuple}
2020-11-27 19:37:44 +00:00
Performs syntactic substitution of [tuple ](../../sql-reference/data-types/tuple.md#tuplet1-t2 ) elements in the call location.
**Syntax**
``` sql
untuple(x)
```
You can use the `EXCEPT` expression to skip columns as a result of the query.
2021-02-15 21:22:10 +00:00
**Arguments**
2020-11-27 19:37:44 +00:00
2021-03-13 18:18:45 +00:00
- `x` — A `tuple` function, column, or tuple of elements. [Tuple ](../../sql-reference/data-types/tuple.md ).
2020-11-27 19:37:44 +00:00
**Returned value**
- None.
**Examples**
Input table:
``` text
┌─key─┬─v1─┬─v2─┬─v3─┬─v4─┬─v5─┬─v6────────┐
│ 1 │ 10 │ 20 │ 40 │ 30 │ 15 │ (33,'ab') │
│ 2 │ 25 │ 65 │ 70 │ 40 │ 6 │ (44,'cd') │
│ 3 │ 57 │ 30 │ 20 │ 10 │ 5 │ (55,'ef') │
│ 4 │ 55 │ 12 │ 7 │ 80 │ 90 │ (66,'gh') │
│ 5 │ 30 │ 50 │ 70 │ 25 │ 55 │ (77,'kl') │
└─────┴────┴────┴────┴────┴────┴───────────┘
```
Example of using a `Tuple` -type column as the `untuple` function parameter:
Query:
``` sql
SELECT untuple(v6) FROM kv;
```
Result:
``` text
┌─_ut_1─┬─_ut_2─┐
│ 33 │ ab │
│ 44 │ cd │
│ 55 │ ef │
│ 66 │ gh │
│ 77 │ kl │
└───────┴───────┘
```
2021-07-10 20:12:32 +00:00
Note: the names are implementation specific and are subject to change. You should not assume specific names of the columns after application of the `untuple` .
2020-11-27 19:37:44 +00:00
Example of using an `EXCEPT` expression:
Query:
``` sql
SELECT untuple((* EXCEPT (v2, v3),)) FROM kv;
```
Result:
``` text
┌─key─┬─v1─┬─v4─┬─v5─┬─v6────────┐
│ 1 │ 10 │ 30 │ 15 │ (33,'ab') │
│ 2 │ 25 │ 40 │ 6 │ (44,'cd') │
│ 3 │ 57 │ 10 │ 5 │ (55,'ef') │
│ 4 │ 55 │ 80 │ 90 │ (66,'gh') │
│ 5 │ 30 │ 25 │ 55 │ (77,'kl') │
└─────┴────┴────┴────┴───────────┘
```
**See Also**
- [Tuple ](../../sql-reference/data-types/tuple.md )
2021-04-02 11:19:25 +00:00
## tupleHammingDistance {#tuplehammingdistance}
Returns the [Hamming Distance ](https://en.wikipedia.org/wiki/Hamming_distance ) between two tuples of the same size.
**Syntax**
``` sql
tupleHammingDistance(tuple1, tuple2)
```
**Arguments**
- `tuple1` — First tuple. [Tuple ](../../sql-reference/data-types/tuple.md ).
- `tuple2` — Second tuple. [Tuple ](../../sql-reference/data-types/tuple.md ).
Tuples should have the same type of the elements.
**Returned value**
- The Hamming distance.
Type: [UInt8 ](../../sql-reference/data-types/int-uint.md ).
**Examples**
Query:
``` sql
SELECT tupleHammingDistance((1, 2, 3), (3, 2, 1)) AS HammingDistance;
```
Result:
``` text
┌─HammingDistance─┐
│ 2 │
└─────────────────┘
```
Can be used with [MinHash ](../../sql-reference/functions/hash-functions.md#ngramminhash ) functions for detection of semi-duplicate strings:
``` sql
2021-05-27 19:49:41 +00:00
SELECT tupleHammingDistance(wordShingleMinHash(string), wordShingleMinHashCaseInsensitive(string)) as HammingDistance FROM (SELECT 'ClickHouse is a column-oriented database management system for online analytical processing of queries.' AS string);
2021-04-02 11:19:25 +00:00
```
Result:
``` text
┌─HammingDistance─┐
│ 2 │
└─────────────────┘
```