Connecting Tech Pros Worldwide Forums | Help | Site Map

how do I select unions into a temp table

TJ
Guest
 
Posts: n/a
#1: Nov 23 '05
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
TJ
Guest
 
Posts: n/a
#2: Nov 23 '05

re: how do I select unions into a temp table


Got it...

create temp table tmpPlanner ((select...)union (select...))


--
TJ
Closed Thread