Skip to content
ClickHouse Docs
ClickHouse DocsClickHouse Docs

maxIntersectionsPosition

maxIntersectionsPosition

首次引入于:v1.1.0

用于计算 maxIntersections 函数各次出现位置的聚合函数。

语法

maxIntersectionsPosition(start_column, end_column)

参数

  • start_column — 表示每个区间起点的数值列。如果 start_columnNULL 或 0,则跳过该区间。(U)Int*Float*
  • end_column — 表示每个区间终点的数值列。如果 end_columnNULL 或 0,则跳过该区间。(U)Int*Float*

返回值

返回相交区间数量最多时的起始位置。Any

示例

查找相交数量最多的位置

CREATE TABLE my_events (
    start UInt32,
    end UInt32
)
ENGINE = MergeTree
ORDER BY tuple();

INSERT INTO my_events VALUES
(1, 3),
(1, 6),
(2, 5),
(3, 7);

SELECT maxIntersectionsPosition(start, end) FROM my_events;
┌─maxIntersectionsPosition(start, end)─┐
│                                    2 │
└──────────────────────────────────────┘
Navigation