array_pushfront

SinceVersion 2.0

array_pushfront

description

Syntax

Array<T> array_pushfront(Array<T> arr, T value) 将value添加到数组的开头.

Returned value

返回添加value后的数组

类型: Array.

notice

只支持在向量化引擎中使用

example

  1. mysql> select array_pushfront([1, 2], 3);
  2. +---------------------------------+
  3. | array_pushfront(ARRAY(1, 2), 3) |
  4. +---------------------------------+
  5. | [3, 1, 2] |
  6. +---------------------------------+
  7. mysql> select col3, array_pushfront(col3, 6) from array_test;
  8. +-----------+----------------------------+
  9. | col3 | array_pushfront(`col3`, 6) |
  10. +-----------+----------------------------+
  11. | [3, 4, 5] | [6, 3, 4, 5] |
  12. | [NULL] | [6, NULL] |
  13. | NULL | NULL |
  14. | [] | [6] |
  15. +-----------+----------------------------+
  16. mysql> select col1, col3, array_pushfront(col3, col1) from array_test;
  17. +------+-----------+---------------------------------+
  18. | col1 | col3 | array_pushfront(`col3`, `col1`) |
  19. +------+-----------+---------------------------------+
  20. | 0 | [3, 4, 5] | [0, 3, 4, 5] |
  21. | 1 | [NULL] | [1, NULL] |
  22. | 2 | NULL | NULL |
  23. | 3 | [] | [3] |
  24. +------+-----------+---------------------------------+

keywords

ARRAY,PUSHFRONT,ARRAY_PUSHFRONT