ClickHouse/docs/en/functions/in_functions.rst

19 lines
879 B
ReStructuredText
Raw Normal View History

2017-04-26 19:16:38 +00:00
Functions for implementing the IN operator
2017-04-03 19:49:50 +00:00
---------------
in, notIn, globalIn, globalNotIn
~~~~~~~~~~~~~
2017-04-26 19:16:38 +00:00
See the section "IN operators".
2017-04-03 19:49:50 +00:00
tuple(x, y, ...), оператор (x, y, ...)
~~~~~~~~~~~~~
2017-04-26 19:16:38 +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.
2017-04-03 19:49:50 +00:00
tupleElement(tuple, n), оператор x.N
~~~~~~~~~~~
2017-04-26 19:16:38 +00:00
A function that allows getting columns from a tuple.
'N' is the column index, starting from 1. '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.