标签: phpmyadmin
如何从表列yearBrth中选择count(yearBrth)大于4(例如)
select yearBrth from users where count(yearBrth) > 4 -- group by yearBrth ;
答案 0 :(得分:2)
使用having
having
select yearBrth from users group by yearBrth having count(yearBrth) > 3