If the tables have identical columns, you could try using a UNION query:
SELECT "Table1" AS TableName, *
FROM MyTableName1
UNION SELECT "Table2" AS TableName, *
FROM MyTableName2;
Substitute your table names for MyTableName1 and MyTableName2.
I have added "Table1" AS TableName and "Table2" AS TableName above as identifiers.
You can now query this query to get the info you want.
Regards Bill