sorry,the unit-test is too simple,so what about this situation :
SELECT
count(user.host) as host_count
,user.host
FROM user
GROUP BY
user.host
ORDER BY host_count desc
the result such as:
host_count,host
3,host1
2,host3
1,host2
the "ORDER BY host_count desc" is needed,and just need to return "host1,host3,host2",
what should I do then ?