Selecione outras colunas com distinto

SELECT * FROM table
WHERE id IN (
  SELECT MAX(id) FROM table GROUP BY name
)
Outstanding Orangutan