如何从表列yearBrth中选择count(yearBrth)超过4(例如)
select
yearBrth
from
users
where
count(yearBrth) > 4
-- group by yearBrth
;
如何从表列yearBrth中选择count(yearBrth)超过4(例如)
select
yearBrth
from
users
where
count(yearBrth) > 4
-- group by yearBrth
;