Jun 22, 2005 #1 awesomeBA Technical User Jun 1, 2005 24 US I'd like to use the results of two querys to create a table. Both contain the same column names and properties. Can you help with the best approach? I tried teh wizard it was a not go? Pprobably ID10T user error
I'd like to use the results of two querys to create a table. Both contain the same column names and properties. Can you help with the best approach? I tried teh wizard it was a not go? Pprobably ID10T user error
Jun 22, 2005 1 #2 PHV MIS Nov 8, 2002 53,708 FR SELECT * INTO NewTable FROM (SELECT * FROM query1 UNION ALL SELECT * FROM query2) AS U; Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886 Upvote 0 Downvote
SELECT * INTO NewTable FROM (SELECT * FROM query1 UNION ALL SELECT * FROM query2) AS U; Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
Jun 22, 2005 Thread starter #3 awesomeBA Technical User Jun 1, 2005 24 US On the money as usual !!! Have a star!!! Upvote 0 Downvote