Hallo Beate,
Ich weiss nicht, ob MySQL auch Prozeduren erlaubt. Falls nicht, kannst du dir mit einer Hilfstabelle behelfen:
»» ...
- Schritt:
SELECT a.Obst, Count(a.*)*100/b.anzahl
FROM table a, temp b
GROUP BY a.Obst
Sorry, es muß natuerlich heissen:
SELECT a.Obst, Count(*)*100/b.anzahl
FROM table a, temp b
GROUP BY a.Obst, b.anzahl
Viele Gruesse
Kess