Hi, I want a query that gets a list of city/state/zipcode triplets, along with the number of cities that are associated with each zip code. What's the best way to do this?This is what I have so far. I can either take the count, or the zipcode out.select zipcode, statename, count(cityname) cntfrom xzip_state_mappinggroup by zipcode, statename
Is there anyways I can stick zip code in there and have CNT reflect the correct number of cities a zip code maps to?