I need to know the team with highest number of matches in a certain city.

SELECT COUNT(am_matches.team_id) AS matches_count,
am_matches.team_id AS team_id
FROM am_matches
LEFT JOIN am_team ON (am_matches.team_id = am_teams.id)
WHERE am_matches.status = '3' AND am_teams.city_id = '$city_id'
GROUP BY am_matches.team_id
ORDER BY COUNT(am_matches.team_id) DESC LIMIT 1

This works on a local server (wamp), but on a shared host throws "Invalid use of group function". Is there another way of getting this? I need to make a lot of similar querys so I would like to know a more readable approach of getting similar values. Thanks.

link|improve this question

2  
Change ORDER BY COUNT(am_matches.team_id) DESC LIMIT 1 to ORDER BY 1 DESC LIMIT 1 – Michael Pakhantsov Sep 16 '10 at 8:45
wow! that was easy.. What does the "1" do? – JoaoPedro Sep 16 '10 at 8:56
2  
Order by can take column names or their index in the select list. So basically it does the same thing but it doesn't re-evaluate the count expression and is more optimized. – Faisal Feroz Sep 16 '10 at 9:04
feedback

1 Answer

You can order by "1" as the comment said, or you can use the column alias "matches_count". It's preferable and expected to use the alias, not the numerical index, for clarity and readability sake. You would only re-invoke grouping functions in a HAVING clause, never in ORDER. By the time ORDER sees your results, the data is all assembled and just gets sorted.

ORDER BY matches_count DESC LIMIT 1
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.