edb=*# create table demo (zahl int);
CREATE TABLE
edb=*# insert into demo select (random()*10)::int from generate_series(1,20) s;
INSERT 0 20
edb=*# select zahl, count(zahl) from demo group by zahl;
zahl | count
------+-------
9 | 1
3 | 1
5 | 2
4 | 5
10 | 1
6 | 2
7 | 4
1 | 3
8 | 1
(9 rows)
edb=*# select zahl, count(zahl) from demo group by zahl having count(zahl) > 3;
zahl | count
------+-------
4 | 5
7 | 4
(2 rows)