SQL FunctionsArray FunctionsARRAY_APPENDOn this pageARRAY_APPENDPrepends an element to the array. Syntax ARRAY_APPEND( <array>, <element>) Examples SELECT ARRAY_APPEND([3, 4], 5);┌─────────────────────────┐│ array_append([3, 4], 5) │├─────────────────────────┤│ [3,4,5] │└─────────────────────────┘