Hello All:
I have a union query that I would like to merge in order to performa purge. The tables each have only two fields, and they are the same type. The queruy itself runs fine but when I wrap the create table statement around it I get invalid argument. Can you help?
SELECT q.office,q.account
INTO PurgeBDPJun12Union
FROM
(select office,account
from TableToUseToPurgeJun12
union
select office,account
from ToBePurgedFromBDPSource) q
I do want duplicates eliminated.
Start Free Trial