mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-06 22:42:22 +00:00
6 lines
360 B
SQL
6 lines
360 B
SQL
DROP TABLE IF EXISTS my_events;
|
|
CREATE TABLE my_events (start UInt32, end UInt32) Engine = MergeTree ORDER BY tuple()
|
|
AS Select * FROM VALUES ('start UInt32, end UInt32', (1, 3), (1, 6), (2, 5), (3, 7));
|
|
SELECT start, end, maxIntersections(start, end) OVER () FROM my_events;
|
|
SELECT start, end, maxIntersectionsPosition(start, end) OVER () FROM my_events;
|