how do I select unions into a temp table

From: TJ <tj(at)getlostspammers(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: how do I select unions into a temp table
Date: 2004-08-21 01:01:05
Message-ID: l9xVc.8398$Bt5.4805@twister.socal.rr.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I want to do something like this, but I can't seem to find the right syntax:

select * into temp tblDest where(
(select t0.*
from tblSource0 t0, tblExtension1 t1
where t0.colA = 1 and t0.oid_parent = t1.oid
)
union
(select t2.*
from tblSource2 t2, tblExtension3 t3
where t2.colA = 1 and t2.oid_parent = t3.oid
)
)

You'll notice that I'm trying to do this all in a single query... I'm
essentially merging and eliminating duplicates simultaneously.

--
TJ

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Jeff 2004-08-21 01:46:23 Re: Postgres filling up hard drive with swap files
Previous Message Marc G. Fournier 2004-08-21 00:19:38 New Stable Releases to Address Critical Bugs