Skip to content

Returns the element at a specified position in an array (1-indexed).

func.element_at([10, 20, 30], 2)
func.element_at([10, 20, 30], 2)
┌────┐
20
└────┘
ELEMENT_AT([10, 20, 30], 2)
SELECT ELEMENT_AT([10, 20, 30], 2);
┌────┐
20
└────┘