Is there a way of joining tables in a data base without using the
"relationships" feature? I have several tables of similar information and
want 1 big database.
An Append query will add the records in one table as new records in
another table; you should consider creating a "master" table to hold
all this data, if indeed the tables are of similar structure; run an
Append query for each table that you want to include into the new
table.
If you want to keep the tables separate (probably not a good idea but
just in case), but combine them for searching or display, you can use
a UNION query; see the online help for UNION.
John W. Vinson[MVP]