I have an access query that computes an average and then finds the max value of each of these averages using stored procedures.
how do I do this as the version of sql I am using now says that MAX(AVG(hits)) is invalid.
SELECT member,memtype,avg(hits)
FROM MEMBERS
GROUP BY member,memtype
How do I work out the max average and ideas
how do I do this as the version of sql I am using now says that MAX(AVG(hits)) is invalid.
SELECT member,memtype,avg(hits)
FROM MEMBERS
GROUP BY member,memtype
How do I work out the max average and ideas