Skip to content

Removes the first element from the array.

func.array_remove_first( <array> )
func.array_remove_first([1, 2, 3])
┌─────────────────────────────────────┐
│ func.array_remove_first([1, 2, 3]) │
├─────────────────────────────────────┤
[2,3]
└─────────────────────────────────────┘
ARRAY_REMOVE_FIRST( <array> )
SELECT ARRAY_REMOVE_FIRST([1, 2, 3]);
┌───────────────────────────────┐
│ array_remove_first([1, 2, 3]) │
├───────────────────────────────┤
│ [2,3] │
└───────────────────────────────┘