select university,avg(question_cnt) as avg_question_cnt
from user_profile
group by university
order by avg_question_cnt ;
SQL20 分组排序练习题
最新推荐文章于 2025-03-19 15:40:19 发布
select university,avg(question_cnt) as avg_question_cnt
from user_profile
group by university
order by avg_question_cnt ;