array_position

array_position

description

Syntax

BIGINT array_position(ARRAY<T> arr, T value)

Returns a position/index of first occurrence of the value in the given array.

  1. position - value position in array (starts with 1);
  2. 0 - if value does not present in the array;
  3. NULL - when array is NULL.

example

  1. mysql> SELECT id,c_array,array_position(c_array, 5) FROM `array_test`;
  2. +------+-----------------+------------------------------+
  3. | id | c_array | array_position(`c_array`, 5) |
  4. +------+-----------------+------------------------------+
  5. | 1 | [1, 2, 3, 4, 5] | 5 |
  6. | 2 | [6, 7, 8] | 0 |
  7. | 3 | [] | 0 |
  8. | 4 | NULL | NULL |
  9. +------+-----------------+------------------------------+
  10. mysql> select array_position([1, null], null);
  11. +--------------------------------------+
  12. | array_position(ARRAY(1, NULL), NULL) |
  13. +--------------------------------------+
  14. | 2 |
  15. +--------------------------------------+
  16. 1 row in set (0.01 sec)

keywords

ARRAY,POSITION,ARRAY_POSITION