Re: Replaceing records - Mailing list pgsql-general

From Jonathan Bartlett
Subject Re: Replaceing records
Date
Msg-id Pine.GSU.4.44.0309041225510.4262-100000@eskimo.com
Whole thread Raw
In response to Re: Replaceing records  (Richard Ellis <rellis9@yahoo.com>)
List 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 by date:

Previous
From: Josué Maldonado
Date:
Subject: Re: TCL trigger doesn't work after deleting a column
Next
From: Jan Wieck
Date:
Subject: Re: how to call a TCL function from within a plpgsql trigger?