I am using the following query to show me the number of reviews done by each team during a certain time period. It works great except for one thing. I would like it to return all teams including those that had zero reviews. As is it only returns a value if the team had at least one review. Any thoughts?
SELECT AgeReview.TeamIDRS, Count(AgeReview.TeamIDRS) AS CountOfTeamIDRS
FROM AgeReview INNER JOIN Team_Info ON AgeReview.TeamIDRS = Team_Info.TeamIDRS
WHERE (((AgeReview.ReviewDate) Between [Type the beginning date:] And [Type the ending date:]))
GROUP BY AgeReview.TeamIDRS;
SELECT AgeReview.TeamIDRS, Count(AgeReview.TeamIDRS) AS CountOfTeamIDRS
FROM AgeReview INNER JOIN Team_Info ON AgeReview.TeamIDRS = Team_Info.TeamIDRS
WHERE (((AgeReview.ReviewDate) Between [Type the beginning date:] And [Type the ending date:]))
GROUP BY AgeReview.TeamIDRS;