Danke, hab es jetzt (mit Hilfe eines Freundes) so gelöst:
SQL-Code:
SELECT t1.voting_text, count(*) AS `ergebnis`
FROM `data` t1
LEFT JOIN `data` t2
ON t1.voting_ip = t2.voting_ip
AND t1.voting_date < t2.voting_date
WHERE t2.voting_id IS NULL
GROUP BY t1.voting_text;
Danke an alle Mitdenker