Data of 2 tables in 1 query (1 Viewer)

faaebr

New member
Local time
Today, 18:15
Joined
Jun 18, 2009
Messages
2
I have two tables T1 and T2. There are 12 fields in each (100%) the same. But records (data) are different. How can I have a query that merges the data of T1 & T2? When I do link, it comes T1.field1,.... and then T2.field1.... It makes a table with 24 fields! I want table that merges the records and but shows the same 12 fields. Thanks for your help.
 

namliam

The Mailman - AWF VIP
Local time
Today, 15:45
Joined
Aug 11, 2003
Messages
11,695
Check out the UNION command... this will merge the tables...

Select * from table1
UNION
Select * from table2

Ps Welcome to AWF
 

faaebr

New member
Local time
Today, 18:15
Joined
Jun 18, 2009
Messages
2
Namliam from Amsterdam,

PERFECTO

Thanks Danke Merci
 

Users who are viewing this thread

Top Bottom