select id count(*) from table from group by id having count ? 3 code example
Example: sql groub by count
SELECT COUNT(Id), Country
FROM Customer
GROUP BY Country
SELECT COUNT(Id), Country
FROM Customer
GROUP BY Country