select university, avg(question_cnt) as "avg_question_cnt" from user_profile group by university having avg_question_cnt >= 1 order by avg_question_cnt;
select university, avg(question_cnt) as "avg_question_cnt" from user_profile group by university having avg_question_cnt >= 1 order by avg_question_cnt;