I iraidotel@yahoo.com Registered User. Local time Tomorrow, 02:53 Joined Dec 17, 2014 Messages 36 Feb 5, 2016 #1 Dear All I have 2 tables that you want to merge. how do it via MS Access thank you regards, Ira Attachments create The combined results.xls create The combined results.xls 21.5 KB · Views: 68
P plog Banishment Pending Local time Today, 14:53 Joined May 11, 2011 Messages 11,986 Feb 5, 2016 #2 Define merge? You could APPEND data from table 2 into table 1. Or you could use a UNION query (http://www.w3schools.com/sql/sql_union.asp) which would keep the tables seperate but allow you to virtually combine them in a query.
Define merge? You could APPEND data from table 2 into table 1. Or you could use a UNION query (http://www.w3schools.com/sql/sql_union.asp) which would keep the tables seperate but allow you to virtually combine them in a query.
C CJ_London Super Moderator Staff member Local time Today, 20:53 Joined Feb 19, 2013 Messages 17,467 Feb 5, 2016 #3 use an append query to one table from the other if this is a permanent merge. Otherwise use a union query beaten to it!
use an append query to one table from the other if this is a permanent merge. Otherwise use a union query beaten to it!
I iraidotel@yahoo.com Registered User. Local time Tomorrow, 02:53 Joined Dec 17, 2014 Messages 36 Feb 7, 2016 #4 ok, thanks all