ACC2000: "Microsoft Access Can't Represent the Join Expression" Error Message in Query Design (207868)
The information in this article applies to:
This article was previously published under Q207868 Moderate: Requires basic macro, coding, and interoperability skills.
This article applies only to a Microsoft Access database (.mdb).
SYMPTOMS
After you create a query with the Simple Query Wizard in Microsoft Access, you may receive the following error message if you try to open the query in Design view:
Microsoft Access can't represent the join expression
([<TableName>].[<FieldName>] =
[<TableName>].[<FieldName>]) AND
([<TableName>].[<FieldName>] =
[<TableName>].[<FieldName>]) in Design
view.
CAUSE
The Simple Query Wizard adds an extra set of parentheses in the join
expression of the SQL statement that it creates for the query.
The error occurs if your query meets both of the following conditions:
- If your query is based on two or more tables.
- If two of the tables contain a relationship or join based on a three-field primary key.
RESOLUTION
You can use either of the following methods to work around this problem:
- You can create the query in Design view without using the Simple Query Wizard.
- You can modify the query's SQL statement to remove the extra parentheses. Open the query in Datasheet view, and then click SQL View on the View menu to see the SQL statement. This is an example of a portion of the join expression with the extra parentheses:
ON ([tblOne].[Key3] = [tblTwo].[Key3]) AND (([tblOne].[Key1]
= [tblTwo].[Key1]) AND ([tblOne].[Key2] = [tblTwo].[Key2]));
This is how the expression looks with the extra parentheses removed:
ON ([tblOne].[Key3] = [tblTwo].[Key3]) AND ([tblOne].[Key1]
= [tblTwo].[Key1]) AND ([tblOne].[Key2] = [tblTwo].[Key2]);
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article. REFERENCESFor more information about creating relationships between tables, click Microsoft Access Help on the
Help menu, type create or modify relationships in the Office Assistant or
the Answer Wizard, and then click Search to view the topics
returned.
Modification Type: | Major | Last Reviewed: | 6/24/2004 |
---|
Keywords: | kbbug kberrmsg kbpending KB207868 |
---|
|