Update array-functions.md

fix arrayIntersect
This commit is contained in:
Denny Crane 2021-08-16 21:08:02 -03:00 committed by GitHub
parent 974acb615a
commit 815a4ddf33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -952,7 +952,7 @@ SELECT arrayEnumerateDense([10, 20, 10, 30])
## arrayIntersect(arr) {#array-functions-arrayintersect}
Takes multiple arrays, returns an array with elements that are present in all source arrays. Elements order in the resulting array is the same as in the first array.
Takes multiple arrays, returns an array with elements that are present in all source arrays.
Example: