Merging two tables into a new blank (1 Viewer)

yadagiri8

New member
Local time
Yesterday, 22:47
Joined
Sep 16, 2011
Messages
1
Hi friends,

I am having 3 tables in access with 10 colomns in each but 3 colomns are unique among 3 and the content not duplicating among 3

now can i pull these 3 colomns data into a new table like below

Please do needfull
 
Last edited:

GinaWhipp

AWF VIP
Local time
Today, 01:47
Joined
Jun 21, 2011
Messages
5,899
Griad still not showing probably because this is your first post. So...

Welcome to the forum! :D

To put the columns into one you will either need an APPEND query, if a new table or an UPDATE query if an existing table.

UPDATE query
Code:
UPDATE tblYourTable SET tblYourTable.NewField = [Field1] & [Field2] & [Field3];

APPEND query
Code:
INSERT INTO Table2 ( tblYourNewTable)
SELECT [Field1] & [Field2] & [Field3] AS NewField
FROM tblYourTable;
 

Users who are viewing this thread

Top Bottom