ClickHouse/docs/zh/sql-reference/functions/in-functions.md
Ivan Blinkov d91c97d15d
[docs] replace underscores with hyphens (#10606)
* Replace underscores with hyphens

* remove temporary code

* fix style check

* fix collapse
2020-04-30 21:19:18 +03:00

925 B
Raw Blame History

IN运算符相关函数

in,notIn,globalIn,globalNotIn

请参阅IN 运算符部分。

tuple(x, y, …), operator (x, y, …)

函数用于对多个列进行分组。 对于具有类型T1T2…的列它返回包含这些列的元组T1T2。 执行该函数没有任何成本。 元组通常用作IN运算符的中间参数值或用于创建lambda函数的形参列表。 元组不能写入表。

元组元素(元组,n),运算符x.N

函数用于从元组中获取列。 N是列索引从1开始。N必须是常量正整数常数并且不大于元组的大小。 执行该函数没有任何成本。

来源文章