Although the easiest solution is just to link to all tables required (as you have now done), it is also possible to create queries to external databases without linking tables using syntax such as:
SELECT Field1, Field2, Field3 FROM [Full path to external database].TableName;
For example...