SQL FunctionsArray FunctionsARRAY_PREPENDOn this pageARRAY_PREPENDPrepends an element to the array. Syntax ARRAY_PREPEND( <element>, <array> ) Examples SELECT ARRAY_PREPEND(1, [3, 4]);┌──────────────────────────┐│ array_prepend(1, [3, 4]) │├──────────────────────────┤│ [1,3,4] │└─────────────── ───────────┘