Sie möchten HAVING verwenden, um nach der Aggregatfunktion zu filtern.
SELECT name, COUNT(*)
FROM mytable
GROUP BY name
HAVING COUNT(*) > 1
Sie möchten HAVING verwenden, um nach der Aggregatfunktion zu filtern.
SELECT name, COUNT(*)
FROM mytable
GROUP BY name
HAVING COUNT(*) > 1