HomeSQL FunctionsArray FunctionsARRAY_PREPEND本页总览ARRAY_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] │└──────────────────────────┘