| From: | Bruno Wolff III <bruno(at)wolff(dot)to> |
|---|---|
| To: | Alex <alex(at)meerkatsoft(dot)com> |
| Cc: | pgsql-general(at)postgresql(dot)org |
| Subject: | Re: Problem Deleting Referenced records |
| Date: | 2003-11-10 05:44:45 |
| Message-ID: | 20031110054445.GA17163@wolff.to |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
On Mon, Nov 10, 2003 at 14:31:00 +0900,
Alex <alex(at)meerkatsoft(dot)com> wrote:
> Hi,
> I have two tables , A and B where table B has a foreign key constraint
> to table A.
>
> I want to delete all records in table A that are older than a certain
> date that are not referenced by table B.
>
> When I use a DELETE FROM the entire transaction fails as soon as a
> referential integrity violation is detected.
>
> Is that the normal behavior? Is there a way to allow the deletion to
> complete but skipping all those records that are referenced ?
I think you want to do something like:
delete from A where A.stamp < current_date - '1 month' and
not exists (select 1 from B where B.Aid = A.id);
It is also possible to join A and B on the delete command using a nonstandard
syntax, but not exists should be about as fast.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2003-11-10 06:15:23 | Re: Tables spanning db's in cluster |
| Previous Message | Alex | 2003-11-10 05:31:00 | Problem Deleting Referenced records |