PostgreSQL/Array/array append
Версия от 13:45, 26 мая 2010; (обсуждение)
array_append(ARRAY[1,2], 3)
postgres=# SELECT array_append(ARRAY[1,2], 3);
array_append
--------------
{1,2,3}
(1 row)
postgres=#postgres=# SELECT array_append(ARRAY[1,2], 3);
array_append
--------------
{1,2,3}
(1 row)
postgres=#