You may be looking for a Union Query. This allows you to list records from more than one table in a single query within the same fields. example:
SELECT ALL [Field1], [Field2]
from Table1
UNION ALL SELECT [Field1], [Field2]
from Table2
ORDER BY [Field1];
if Table 1 looks like:
Field 1 Field 2
1 abc
2 def
and Table 2 looks like:
Field 1 Field 2
8 uvw
9 xyz
Then the Union query returns
Field 1 Field 2
1 abc
2 def
8 uvw
9 xyz
This is a simple example. You can add WHERE statements and even combine fileds that do not have the same name with the SELECT... AS statement.
I hope this helps.
BAKEMAN [Pimp]