Pilih kolom lain dengan berbeda

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