第一种方法 用时42ms 查询方法SELECT t1.university, t3.difficult_level, COUNT(t2.question_id) / COUNT(DISTINCT(t2.device_id)) as avg_answer_cntfrom user_profile as t1, question_practice_detail as t2, question_detail as t3WHERE t1.university = '山东大学' and t1.device_id = t2.device_id and ...