SELECT Area, COUNT(Area) as Count FROM ftm_data GROUP BY Area order by Count DESC LIMIT 5
solved MySQL Query, Count Number of Rows with Same Value Limited to 5 Results
SELECT Area, COUNT(Area) as Count FROM ftm_data GROUP BY Area order by Count DESC LIMIT 5
solved MySQL Query, Count Number of Rows with Same Value Limited to 5 Results