Query 003

SELECT nome AS "Nome",
       spp  AS "Especie",
       utmx AS "X",
       utmy AS "Y"
FROM arvores
WHERE nome != 'Não identificado'
ORDER BY nome, utmx ASC
LIMIT 30;