SELECT name, count(Name) AS namecount
FROM track
GROUP BY Name
ORDER BY namecount DESC
LIMIT 1
That should return the name and count for the name with the most rows.
But it will return only one name even if there are two names that have the same number of rows.
But I think that can be done with a slightly different query.
Thomas