I'm fairly proficient with Access (at least I like to think I am) and was reading Allen Brown's page on Optimizing Queries when I saw this statement:
Could someone elaborate on this? How else would you create a multi-table query (ruling out subqueries) without the use of Joins? How would you filter the results of a multiple table query without specifying criteria (Where-clause) to filter on? What am I missing or not understanding?With multi-table queries, use JOINs where possible. JET will execute this faster than a WHERE clause on the foreign key.