I have 2 accdb files. I need to create a recordset that will include rows comming from 2 tables that are in 2 different accdb file.
Like:
Code:
select a.no, a.name, a.address, b.total from table1 as a, table2 as b where a.no = b.no
Is that possible? I will need 2 connections, and I can't see how I can "select" from...
Leave a comment: