使用分组,然后对分组值进行过滤,having 等同于where,where使用于现有值进行过滤,having 使用于对未在表中出现的值(分组)进行过滤 select count(gender),avg(gpa) from user_profile group by gender having gender="male