GROUP BYを使用する:
select value, count(*) from table group by value
HAVINGを使用して、結果をさらに減らします。 3回以上発生する値のみ:
select value, count(*) from table group by value having count(*) > 3
GROUP BYを使用する:
select value, count(*) from table group by value
HAVINGを使用して、結果をさらに減らします。 3回以上発生する値のみ:
select value, count(*) from table group by value having count(*) > 3