array_append(ARRAY[1,2], 3) : array_append « Array « PostgreSQL






array_append(ARRAY[1,2], 3)

postgres=# SELECT array_append(ARRAY[1,2], 3);
 array_append
--------------
 {1,2,3}
(1 row)

postgres=#

           
       








Related examples in the same category