Mega Code Archive

 
Categories / PostgreSQL / Array
 

Array_append(ARRAY[1,2], 3)

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