array_position
函式
適用於:Databricks SQL Databricks Runtime
傳回 element
中出現第一個 array
的位置。
語法
array_position(array, element)
引數
-
array
:具有可比較元素的ARRAY。 -
element
:符合 中array
項目類型的表達式。
傳回
一個 BIGINT
。
陣列索引編製從 1 開始。 如果元素值是 NULL
,則會傳回 NULL
。
如果陣列中找不到元素,則會傳回 0。
範例
-- 1 exists twice. The function returns the first position
> SELECT array_position(array(3, 2, 1, 4, 1), 1);
3
-- this function cannot be used to find the position of a NULL element.
> SELECT array_position(array(3, NULL, 1), NULL)
NULL
> SELECT array_position(array(3, 2, 1), NULL)
NULL
-- The element is not found in the array
> SELECT array_position(array(3, 2, 1, 4, 1), 5)
0