Hi
If I run only the whole query with 1st INNER JOIN, only, it works fine. When I append the second INNER JOIN (see below) it would return an error: Syntax error(missing operator) in query expression 'A.ProjectID = P.ProjectID
INNER JOIN ConstructionStatuses ON P.ConstructionStatusID = ConstructionStatuses.ID'
Do I need a delimiter between the 2 JOINS? I'm using MsAccess.
My Query
-----------------
INNER JOIN Projects AS P ON A.ProjectID = P.ProjectID
INNER JOIN ConstructionStatuses ON P.ConstructionStatusID = ConstructionStatuses.ID
Any hints highly welcome
Cheers
If I run only the whole query with 1st INNER JOIN, only, it works fine. When I append the second INNER JOIN (see below) it would return an error: Syntax error(missing operator) in query expression 'A.ProjectID = P.ProjectID
INNER JOIN ConstructionStatuses ON P.ConstructionStatusID = ConstructionStatuses.ID'
Do I need a delimiter between the 2 JOINS? I'm using MsAccess.
My Query
-----------------
INNER JOIN Projects AS P ON A.ProjectID = P.ProjectID
INNER JOIN ConstructionStatuses ON P.ConstructionStatusID = ConstructionStatuses.ID
Any hints highly welcome
Cheers