ACC: Outer Join with WHERE Clause Returns Unexpected Records
ID: Q124152
|
The information in this article applies to:
-
Microsoft Access versions 1.0, 1.1, 2.0, 7.0, 97
SYMPTOMS
Moderate: Requires basic macro, coding, and interoperability skills.
When you run a query based on two tables (in this example, called table A
and table B) with an outer join to include all the records from table A,
and you apply a WHERE clause to table B, only those records from table B
that have a matching value in table A are returned. This seems to be the
reverse of what you expected.
CAUSE
When you run the query, the outer join is performed first, creating all the
records from table A. Then, the WHERE clause from table B is applied to all
the records, eliminating records from the query. The result set does not
contain all the records from table A, but contains only those where the
condition is met for table B.
Unlike Microsoft Access, SQL Server currently processes the WHERE before
the join. This is because this feature was implemented before the ANSI
SQL-92 standard. Before then, there was no outer join spec at all.
Therefore, the same query could return different results against SQL
Server, depending on whether you use a Select query or a SQL pass-through
query (in which case SQL Server would handle the query and simply return
the results.)
RESOLUTION
If you want to return all the records in table A, you can use two queries.
The first query should apply the WHERE clause to table B, and the second
query should combine table A with the first query to perform the outer
join.
STATUS
This type of query processing is by design and complies with the ANSI SQL
92 specification.
MORE INFORMATION
Steps to Reproduce Behavior
- Open the sample database Northwind.mdb (or NWIND.MDB in versions 1.x
and 2.0).
- Create a new query based on the Categories and the Products tables.
The two tables should be joined on the CategoryID field (or Category ID
in versions 1.x and 2.0).
- Double-click the join line. In the Join Properties box, select the
"Include ALL records from 'Categories'..." option button, and then
click OK.
- Drag the CategoryName field (or Category Name in versions 1.x and 2.0)
from the Categories field list to the first column of the query grid.
- Drag the ProductName field (or Product Name in versions 1.x and 2.0)
field from the Products field list to the second column of the query
grid.
- In the Criteria row of the ProductName column, type Like A*.
- Run the query. Note that not all the records from the Categories table
are returned. Instead, only those records with a Product Name starting
with the letter "A" are returned.
Steps to Return the Expected Recordset
- Open the sample database Northwind.mdb.
- Create a new query based on the Products table.
- Drag the CategoryID and ProductName fields from the Products field
list to the query grid.
- In the Criteria row for the ProductName field, type Like A*.
- Save the query as Query1, and then close it.
- Create a new query based on the Categories table and the Query1
query.
- Drag the CategoryName field from the Categories field list to the
query grid.
- Drag the ProductName field from the Query1 field list to the query
grid.
- Double-click the join line. In the Join Properties box, select the
"Include ALL records from 'Categories'..." option button, and then
click OK.
- Run the query. Note that all the records from the Categories table
are returned, with the ProductName field filled in for records
with a matching record in the Products table.
Keywords : QryJoin
Version : 1.0 1.1 2.0 7.0 97
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: April 8, 1999