select university,avg(question_cnt) as avg_question_cnt
from user_profile
group by university
order by avg_question_cnt ;
SQL20 分组排序练习题
最新推荐文章于 2024-11-11 21:16:16 发布
select university,avg(question_cnt) as avg_question_cnt
from user_profile
group by university
order by avg_question_cnt ;