This is related to my previous question More than 1 Left joins in MSAccess
The problem is that I have 3 left joins followed by an AND operator to check 1 condition.
If I run, then I am getting an error "Join Expression not supported".
The query goes like this:
SELECT * FROM(( EMPLOYEE AS E  LEFT JOIN DEPARTMENT AS D ON E.EID=D.EID)
                 LEFT JOIN MANAGERS M ON D.DID=M.DID)
             LEFT JOIN MANAGERDETAILS MD  ON M.MDID=MD.MDID
 **AND E.ENO=MD.ENO**
If I take out AND part, it works fine.
Any idea?