aliashippysmom
Programmer
I haven't used Access in quite a while and am trying to join 3 tables. I'm getting syntax errors. I have tried doing the query with no table aliases, adding parens where I think they need to go. MS says to do all the INNER JOIN clauses first, still no go. Here is the query:
I am getting (now) a syntax error in the JOIN clause.
Does anyone have any ideas? I've stared at this for the past hour or so
Thanks in advance!
Code:
SELECT * FROM Groups
INNER JOIN (Member_Group ON Member_Group.groupID = groups.ID)
INNER JOIN (Members ON members.ID = member_Group.membershipID)
WHERE m.ID = 1948
I am getting (now) a syntax error in the JOIN clause.
Does anyone have any ideas? I've stared at this for the past hour or so
Thanks in advance!