ClickHouse/docs/zh/query_language/functions/in_functions.md
2019-06-07 13:40:49 +03:00

21 lines
787 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# IN运算符相关函数
## in, notIn, globalIn, globalNotIn
请参阅[IN 运算符](../select.md#select-in-operators)部分。
## tuple(x, y, ...), operator (x, y, ...)
函数用于对多个列进行分组。
对于具有类型T1T2...的列它返回包含这些列的元组T1T2...)。 执行该函数没有任何成本。
元组通常用作IN运算符的中间参数值或用于创建lambda函数的形参列表。 元组不能写入表。
## tupleElement(tuple, n), operator x.N
函数用于从元组中获取列。
'N'是列索引从1开始。N必须是常量正整数常数并且不大于元组的大小。
执行该函数没有任何成本。
[来源文章](https://clickhouse.yandex/docs/en/query_language/functions/in_functions/) <!--hide-->