Apache-presto-element-at
提供:Dev Guides
presto:default> select array_intersect(array[1,2,3],array[2,4]) as intersection;
intersection
--------------
[2]
presto:default> select element_at(array[1,2,3],2) as element_position;
element_position
------------------
2