select some_column, count(*)
from some_table
group by 1
having count(*) > 1;
Pada database seperti mysql, Anda bahkan dapat menghilangkan memilih count(*)
untuk meninggalkan hanya nilai kolom:
select some_column
from some_table
group by 1
having count(*) > 1;