I have the following 3 tables:
activities:
ID Guide Garden activityDate comment
activeGuides:
ID first_name last_name
gardens:
ID num
I also have the following working query:
SELECT [first_name] & ' ' & [last_name] AS Guide,
activities.garden,
activities.activityDate,
activities.comment
FROM activities
INNER JOIN activeGuides ON activities.guide = activeGuides.ID
But when I insert another INNER JOIN line which will include the garden's number instead of its ID, things stop working.
Is there a way to enter another INNER JOIN line ?
Thank you