Query 004

SELECT nome AS "Nome",
       spp  AS "Espécie",
       COUNT (*) AS n
FROM arvores
WHERE nome != 'Não identificado'
GROUP BY nome, spp
ORDER BY n DESC
LIMIT 15;