题解 | #分组计算练习题#
分组计算练习题
http://www.nowcoder.com/practice/009d8067d2df47fea429afe2e7b9de45
方法一: select gender,university,count(*) 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;
方法二: select gender,university,count() as user_num, round(sum(active_days_within_30)/count(),1) as avg_active_day, round(sum(question_cnt)/count(*),1) as avg_question_cnt from user_profile group by gender,university;
科大讯飞公司氛围 474人发布