An index-merge join can be used when each input is a table in native Microsoft Jet database format. Each input must have an index on its join field, and at least one of the indexes must not allow Null values if there is more than one join field.
Following is an example of an index-merge join:
SELECT [Order Details].OrderID, Products.ProductName, [Order Details].ProductID, [Order Details].UnitPrice FROM Products INNER JOIN [Order Details] ON Products.ProductID = [Order Details].ProductID;