Linking tables together

M

Maggie

I have set up five tables in my database but now I want to merge the
tables into one table. How do I do that?
 
P

Pat Hartman

If all the tables have identical structures, you can use a union query.
Select * from tbl1
Union Select * from tbl2
Union Select * from tbl3
.....
 
W

Wayne-I-M

You are best not to. The information in the tables will refer to a specific
record. If they can be merge then they should be just table anyway (but
thats not likely).

Add a relationship between the tables and you will be able to use this
relationship for anything that access can do.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top