How to use count and group by at the same select statement http://stackoverflow.com/questions/2722408/how-to-use-count-and-group-by-at-the-same-select-statement
SELECT town, COUNT(town)
FROM user
GROUP BY town
-- Town Count
-- Copenhagen 58
-- NewYork 58
-- Athens 58