ARRAY_APPEND
Learn how to use the ARRAY_APPEND array function in PlaidCloud Lakehouse. Appends an element to the end of an array - see syntax, examples, and output.
Appends an element to the end of an array.
Analyze Syntax
func.array_append([1, 2, 3], 4)
Analyze Examples
func.array_append([1, 2, 3], 4)
┌───────────┐
│ [1,2,3,4] │
└───────────┘
SQL Syntax
ARRAY_APPEND([1, 2, 3], 4)
SQL Examples
SELECT ARRAY_APPEND([1, 2, 3], 4);
┌───────────┐
│ [1,2,3,4] │
└───────────┘