SELECT university,AVG(question_cnt),avg(answer_cnt) from user_profile
group by university
having AVG(question_cnt)<5 or avg(answer_cnt)<20;
SELECT university,AVG(question_cnt),avg(answer_cnt) from user_profile
group by university
having AVG(question_cnt)<5 or avg(answer_cnt)<20;