select gender, university, count(device_id) as user_num, avg(active_days_within_30) as avg_active_day, avg(question_cnt) as avg_question_cnt from user_profile group by gender,university 以上代码报错,因为性别没有按着格式排序,加了一个order by函数。