select gender,university, count(*) as user_num, round(avg(active_days_within_30),1) as avg_active_day, round(avg(question_cnt),1) as avg_question_cnt from user_profile group by gender,university order by gender,university; 此题结合的知识点比较多,首先是对分组函数 group by的考察,当需要多个分组的时候,使用逗号隔开就可以 不需要再添加group by。 其次是对小数的...