select gender,university,count(id) as user_num,avg(active_days_within_30) as avg_action_day,avg(question_cnt) as avg_question_cnt
from user_profile
group by university,gender;