ARRAY_APPEND (Lakehouse v1)
Prepends an element to the array.
Analyze Syntax
Section titled “Analyze Syntax”func.array_append( <array>, <element>)Analyze Examples
Section titled “Analyze Examples”func.array_append([3, 4], 5)
┌──────────────────────────────┐│ func.array_append([3, 4], 5) │├──────────────────────────────┤│ [3,4,5] │└──────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”ARRAY_APPEND( <array>, <element>)SQL Examples
Section titled “SQL Examples”SELECT ARRAY_APPEND([3, 4], 5);
┌─────────────────────────┐│ array_append([3, 4], 5) │├─────────────────────────┤│ [3,4,5] │└─────────────────────────┘