Suppose the database has a table 'species' with 'en' field. The "group by" command will set up just one row for each 'en' value. Along with 'en' value, count(en) value will be retrieved in descending order as being set by "order by" command. The results will be a table with representative 'en' value with the count of it.
SELECT en, count( en ) AS cnt
FROM `species`
GROUP BY en
ORDER BY cnt DESC