mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 20:24:07 +00:00
953 B
953 B
slug | sidebar_position |
---|---|
/en/sql-reference/aggregate-functions/reference/grouparrayintersect | 141 |
groupArrayIntersect
Return an intersection of given arrays (Return all items of arrays, that are in all given arrays).
Syntax
groupArrayIntersect(x)
Arguments
x
— Argument (column name or expression).
Returned values
- Array that contains elements that are in all arrays.
Type: Array.
Examples
Consider table numbers
:
┌─a──────────────┐
│ [1,2,4] │
│ [1,5,2,8,-1,0] │
│ [1,5,7,5,8,2] │
└────────────────┘
Query with column name as argument:
SELECT groupArrayIntersect(a) as intersection FROM numbers;
Result:
┌─intersection──────┐
│ [1, 2] │
└───────────────────┘