ARRAY_REMOVE_FIRST (Lakehouse v1)
Removes the first element from the array.
Analyze Syntax
Section titled “Analyze Syntax”func.array_remove_first( <array> )Analyze Examples
Section titled “Analyze Examples”func.array_remove_first([1, 2, 3])
┌─────────────────────────────────────┐│ func.array_remove_first([1, 2, 3]) │├─────────────────────────────────────┤│ [2,3] │└─────────────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”ARRAY_REMOVE_FIRST( <array> )SQL Examples
Section titled “SQL Examples”SELECT ARRAY_REMOVE_FIRST([1, 2, 3]);
┌───────────────────────────────┐│ array_remove_first([1, 2, 3]) │├───────────────────────────────┤│ [2,3] │└───────────────────────────────┘