Invalid use of group function
Hello.
I'm getting the wonderful 1111 error on this query: Invalid use of
group function. I'm a bit confused as to how to fix it. Any ideas?
Select user_name, MIN(score) FROM Game
WHERE config_name = 'Graph1Puzzle1' AND end_status = 'SOLVED'
GROUP BY user_name
ORDER BY MIN(score) ASC
LIMIT 50
|