select university,avg(question_cnt) as avg_question_cnt,avg(answer_cnt) as avg_answer_cnt from user_profile group by university having avg(question_cnt)<5 or avg(answer_cnt)<20;

总结:

1.分组查询时,select字段中非聚合函数内的字段 必须在group by后

2.where中不能含有聚合函数,可以使用having和聚合函数一起使用过滤数据