blob: f9e33c916bf919d1fbfac47d23cb0b81e0b50992 [file] [log] [blame] [view]
---
{
"title": "ARRAY_POPFRONT",
"language": "en"
}
---
## array_popfront
array_popfront
### description
#### Syntax
`ARRAY<T> array_popfront(ARRAY<T> arr)`
Remove the first element from array.
### example
```
mysql> select array_popfront(['test', NULL, 'value']);
+-----------------------------------------------------+
| array_popfront(ARRAY('test', NULL, 'value')) |
+-----------------------------------------------------+
| [NULL, value] |
+-----------------------------------------------------+
```
### keywords
ARRAY,POPFRONT,ARRAY_POPFRONT