Make-table query out of join query

Victor70

Registered User.
Local time
Today, 12:00
Joined
Nov 16, 2011
Messages
66
Hello,

Is it possible to create a make-table query out of a join query? If yes, how do I incorporate the INTO statement in my join query?
Whenever I change the type of the join query from SELECT to MAKE-TABLE, all my SQL statement gets deleted.

Thanks in advance.
 
Hmmm. I have not come across such things, infact i have used Make table query after joining two tables, and it works great.. post your query and we can see it.
 
Here is the join query

Code:
select ID,EventID, Description, Expr2, Address, Date, Neighborhood 
from [VS - Progress Report (MTD) - A] 
union all
select  ID,EventID, Description, Expr2, Address, Date, Neighborhood  
from [VS - Progress Report (MTD) - B]

It sources the data from 2 subqueries (VS - ....). I guess the question is how to incorporate INTO statement into this.

Thanks a lot in advance.
 
Try this out, it should work..

Code:
SELECT * INTO makeTblName FROM(select ID,EventID, Description, Expr2, Address, Date, Neighborhood 
from [VS - Progress Report (MTD) - A] 
union all
select  ID,EventID, Description, Expr2, Address, Date, Neighborhood  
from [VS - Progress Report (MTD) - B])
 
Wow.

I must admit that the syntax is not very much intuitive.

Thank you, pr2-eugin!
 

Users who are viewing this thread

Back
Top Bottom