ARRAY_APPEND (Lakehouse v2)
Appends an element to the end of an array.
Analyze Syntax
Section titled “Analyze Syntax”func.array_append([1, 2, 3], 4)Analyze Examples
Section titled “Analyze Examples”func.array_append([1, 2, 3], 4)
┌───────────┐│ [1,2,3,4] │└───────────┘SQL Syntax
Section titled “SQL Syntax”ARRAY_APPEND([1, 2, 3], 4)SQL Examples
Section titled “SQL Examples”SELECT ARRAY_APPEND([1, 2, 3], 4);
┌───────────┐│ [1,2,3,4] │└───────────┘