count(yearBrth) が 4 を超えるテーブル列 yearBrth から選択する方法 (例)
select
yearBrth
from
users
where
count(yearBrth) > 4
-- group by yearBrth
;
count(yearBrth) が 4 を超えるテーブル列 yearBrth から選択する方法 (例)
select
yearBrth
from
users
where
count(yearBrth) > 4
-- group by yearBrth
;