Query from different Databases

Humberto

Registered User.
Local time
Today, 18:12
Joined
Jan 8, 2002
Messages
40
Is it possible to make a Query from different databases. Can someone help. Thank you.
 
I think the easiest way to achieve this is to link tables and then query those tables. You can also do it with DAO.recordsets.

Fuga.
 
You can also use an IN clause to specify an external database e.g.

SELECT Date, Amount FROM Table1 IN "C:/My Documents/db1.mdb"
UNION
SELECT Date, Amount FROM Table1 IN "C:/My Documents/db2.mdb";
 

Users who are viewing this thread

Back
Top Bottom