Re: Replaceing records

Поиск
Список
Период
Сортировка
От Jonathan Bartlett
Тема Re: Replaceing records
Дата
Msg-id Pine.GSU.4.44.0309041225510.4262-100000@eskimo.com
обсуждение исходный текст
Ответ на Re: Replaceing records  (Richard Ellis <rellis9@yahoo.com>)
Список pgsql-general
However, that doesn't cover the case where you want to update the record
if it already exists.

Jon

> insert into test (a, b, c, d)
>   (select 1, 2, 3, 4 where not exists
>     (select 1 from test where a=1 and b=2 and c=3 and d=4)
>   );
>
> If your table contains a=1, b=2, c=3, and d=4, nothing will happen, and
> there will be no failed transaction.  If your table does not contain a=1,
> b=2, c=3, and d=4, you'll get an insert of a row containing 1, 2, 3, 4.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
>                http://archives.postgresql.org
>


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

Предыдущее
От: Josué Maldonado
Дата:
Сообщение: Re: TCL trigger doesn't work after deleting a column
Следующее
От: Jan Wieck
Дата:
Сообщение: Re: how to call a TCL function from within a plpgsql trigger?