Combine Tables with Similar Fields

A

Alchemist61

Hi Guys,
Can you advice me how to combine a total of Six Tables with Similar fields
into one master table and still maintain the six tables?
Thanks.
R.J
 
J

John W. Vinson

Hi Guys,
Can you advice me how to combine a total of Six Tables with Similar fields
into one master table and still maintain the six tables?
Thanks.
R.J

You can combine them by using six Append queries (or a single append query
based on a UNION query).

As for maintaining the same data redundantly in two different places... why on
Earth would you want to do so!? It's extremely bad design and unnecessary.
Just combine the data into one table (perhaps with an additional field to
indicate which table the data came from), and use Queries to generate your six
subsets; then delete the six tables.
 

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