SELECT key_col, data_col FROM
[MS Access;Database=C:\db1.mdb;].Test
UNION
SELECT key_col, data_col FROM
[MS Access;Database=C:\db2.mdb;].Test
UNION
SELECT key_col, data_col FROM
[MS Access;Database=C:\db2.mdb;].Test
ORDER BY 1;
It's your call of course, but, for mdb files, I prefer
SELECT key_col, data_col
FROM Test IN "C:\db1.mdb"
I do agree with you when the foreign db requires a full
connect string though.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.