I am trying to see a list of total log records, grouped by month:
select month(date),count(*)
from playcount
where year(date) = year(today)
group by month(date);
this gives me a syntax error
it appears the group by statement is not valid
i tried just "group by date", it worked but it's not what i wanted.
any suggestions?
TIA
Mark