I'm thinking that it's because of many-to-many relationship in my tables, but I just cannot figure out how to solve the problem.
Here's the problem:
Here are relationship tables:
Form SQL
Here's the problem:
Here are relationship tables:
Form SQL
SELECT tblMember.*, tblMemberSection.*, tblSection.*, tblWI.*
FROM (tblSection INNER JOIN (tblMember INNER JOIN tblMemberSection ON tblMember.fldMemberID = tblMemberSection.fldMemberID) ON tblSection.fldSectionID = tblMemberSection.fldSectionID) INNER JOIN tblWI ON tblSection.fldSectionID = tblWI.fldSectionID;