Re: Possible to UPDATE array[] columns?

Поиск
Список
Период
Сортировка
От Thom Brown
Тема Re: Possible to UPDATE array[] columns?
Дата
Msg-id bddc86150910301118m3a029dddq77eda1a465b6e5ef@mail.gmail.com
обсуждение исходный текст
Ответ на Possible to UPDATE array[] columns?  ("Blake Starkenburg" <blake@oldride.com>)
Список pgsql-general
2009/10/30 Blake Starkenburg <blake@oldride.com>:
> Using SQL is it possible to UPDATE (append) onto an array[] column. For
> example say I have a column named "scores int[]".
>
> ID  | scores
> 2   | {54,14,21,8}
> 3   | {12,0,7}
>
> Now I want to append the score of 12 on row:ID 2 so the new scores would
> read {54,14,21,8,12}. I thought maybe simply leaving the array key empty
> would auto-append "UPDATE table set scores[] = 12 WHERE id = 2", not so....
>

You could use the concatenation operator

so it would be:

UPDATE TABLE set scores[] = scores[] || 12
WHERE id = 2;

Thom

В списке pgsql-general по дате отправления:

Предыдущее
От: "Blake Starkenburg"
Дата:
Сообщение: Possible to UPDATE array[] columns?
Следующее
От: Mark Morgan Lloyd
Дата:
Сообщение: Re: CREATE TABLE LIKE and SERIAL