Hi everyone,
Im trying to do a left join query in Access using SQL but I am stumped at the syntax and am thus getting a join expression not supported error since I rarely ever use it. Can someone please help format the proper syntax for me?
SELECT Series.SeriesID, Series.SeriesActive, Series.SeriesTitle, Series.SeriesType, Sessions.SeriesID, Sessions.SessionStart, Sessions.SessionEnd, Sessions.LeaderID, Sessions.LocationID, Sessions.MaxParticipants, Sessions.SessionNote INTO [Archive Table]
FROM Participants, Series
LEFT JOIN Sessions ON Series.SeriesID = Sessions.SeriesID
Many thanks,
Michael