Выберите другие столбцы с различными

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