0

count(yearBrth) が 4 を超えるテーブル列 yearBrth から選択する方法 (例)

select 
    yearBrth
from 
    users 
where 
    count(yearBrth) > 4
-- group by yearBrth
;
4

1 に答える 1

2

使用するhaving

select yearBrth
from users 
group by yearBrth having count(yearBrth) > 3
于 2013-11-14T10:12:58.533 に答える