I get an email with three access tables namely temp1, temp2 and temp3. Is there a way that I can automate that it should combine three tables into one called temp.
If you have the table temp already created, you can do something like this:
INSERT INTO temp4
SELECT temp1.*, temp2.*, temp3.*, *
FROM temp1, temp2, temp3;
put that into a new query in SQL view, save it, then run it, but be carefull, you may need to modifiy the statement to avoid duplicates, I would also backup the data you have to make sure it runs the way you want.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.