Re: Question About UNION - Mailing list pgsql-general

From David Wilson
Subject Re: Question About UNION
Date
Msg-id e7f9235d0810091235s84723a5x91e5bb6a492d26b4@mail.gmail.com
Whole thread Raw
In response to Re: Question About UNION  (Bill Thoen <bthoen@gisnet.com>)
List pgsql-general
On Thu, Oct 9, 2008 at 3:31 PM, Bill Thoen <bthoen@gisnet.com> wrote:

> Thanks, but that didn't work. That selected only the records from table1.

That's why I warned you about it being written in gmail. :)

select * from table1
union
select table2.* from table2 left join table1 on table2.a=table1.a and
table2.b=table1.b where table1.a is null;

This should probably do it without the temp table (the first version
was checking for null in the wrong place).
--
- David T. Wilson
david.t.wilson@gmail.com

pgsql-general by date:

Previous
From: Markus Wanner
Date:
Subject: Re: [Pkg-postgresql-public] Postgres major version support policy on Debian
Next
From: Chris
Date:
Subject: Re: when COPY violates Primary Keys