select up.university,avg(answer_cnt) avg_answer_cnt from user_profile up left join (select device_id,count( question_id) answer_cnt from question_practice_detail group by device_id)qpd on up.device_id = qpd.device_id where answer_cnt is not null group by up.university order by up.university 提供另一种解题思...