题解 | #分组过滤练习题#
分组过滤练习题
https://www.nowcoder.com/practice/ddbcedcd9600403296038ee44a172f2d
select university, avg(question_cnt) avg_question_cnt, avg(answer_cnt) avg_answer_cnt from user_profile group by university having avg_answer_cnt < 20 or avg_question_cnt < 5
题目的分组对象是学校,需要对平均值进行分析,因此使用having函数来处理分组后的结果。
平均发帖数量和平均回帖数量均使用avg()函数来处理