Hallo,
SELECT MIN(id), gruppe FROM Tiere GROUP BY gruppe ORDER BY id
Schon kommt wieder eine Fehlermeldung: "You tried to execute a query that does not include the specified expression 'id' as part of an aggregate function."
Manche Datenbanken mögen es eher so:
SELECT MIN(id), gruppe FROM Tiere GROUP BY gruppe ORDER BY MIN(id)
Aber da Du uns bis jetzt noch nicht gesagt hast, welche Datenbank Du verwendest, kann ab jetzt nur mehr geraten werden.
Grüße
Klaus