G
gandy
is it possible to query two tables in different .mdb files in a similar fashion as when i query two tables in the same .mdb file
select * from table1 where field1 = field
UNIO
Select * from table2 where field1 = field
This is basically how i join tables in the same database. Is there something similar that will join two tables in different databases?
select * from table1 where field1 = field
UNIO
Select * from table2 where field1 = field
This is basically how i join tables in the same database. Is there something similar that will join two tables in different databases?