Fonction array_position
S’applique à : Databricks SQL Databricks Runtime
Retourne la position de la première occurrence de element
dans array
.
Syntaxe
array_position(array, element)
Arguments
array
: TABLEAU comportant des éléments comparables.element
: expression correspondant au type des éléments dearray
.
Retours
BIGINT
.
L’indexation du tableau commence à 1. Si la valeur de l’élément est NULL
, une NULL
est retournée.
Si l’élément est introuvable dans le tableau, un 0 est retourné.
Exemples
-- 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