Skip to main content
Skip to main content

array_popfront

array_popfront​

SinceVersion 1.2.3

array_popfront

description​

Syntax​

ARRAY<T> array_popfront(ARRAY<T> arr)

Remove the first element from array.

notice​

Only supported in vectorized engine

example​

mysql> set enable_vectorized_engine=true;

mysql> select array_popfront(['test', NULL, 'value']);
+-----------------------------------------------------+
| array_popfront(ARRAY('test', NULL, 'value')) |
+-----------------------------------------------------+
| [NULL, value] |
+-----------------------------------------------------+

keywords​

ARRAY,POPFRONT,ARRAY_POPFRONT