ClickHouse/docs/en/sql-reference/functions/in-functions.md

25 lines
1.2 KiB
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
toc_priority: 60
toc_title: Implementing the IN Operator
---
# Functions for Implementing the IN Operator {#functions-for-implementing-the-in-operator}
2020-03-18 18:43:51 +00:00
## in, notIn, globalIn, globalNotIn {#in-functions}
See the section [IN operators](../operators/in.md#select-in-operators).
2020-03-20 10:10:48 +00:00
## tuple(x, y, …), operator (x, y, …) {#tuplex-y-operator-x-y}
A function that allows grouping multiple columns.
2020-03-20 10:10:48 +00:00
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 cant be written to a table.
## tupleElement(tuple, n), operator x.N {#tupleelementtuple-n-operator-x-n}
A function that allows getting a column from a tuple.
2020-03-20 10:10:48 +00:00
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-01-30 10:34:55 +00:00
[Original article](https://clickhouse.tech/docs/en/query_language/functions/in_functions/) <!--hide-->