G
Guest
I am trying to count entries for 12 periods and have query return 0 when
there are no entries for that period but can't get the language correct.
Please help. SQL follows:
SELECT [tblDatesGS-W].MonthID, Count(PreCountQuery.Expr1) AS CountOfExpr1
FROM [tblDatesGS-W] INNER JOIN PreCountQuery ON [tblDatesGS-W].MonthID =
PreCountQuery.MonthID
GROUP BY [tblDatesGS-W].MonthID;
Thanks
there are no entries for that period but can't get the language correct.
Please help. SQL follows:
SELECT [tblDatesGS-W].MonthID, Count(PreCountQuery.Expr1) AS CountOfExpr1
FROM [tblDatesGS-W] INNER JOIN PreCountQuery ON [tblDatesGS-W].MonthID =
PreCountQuery.MonthID
GROUP BY [tblDatesGS-W].MonthID;
Thanks