写在前面:此题不难,只要逻辑搞懂就好 第一步 找出复旦大学的用户 select a.* from user_profile a where university = '复旦大学' 第二步 找出在8月份答题的人 用到的函数:month() select b.device_id,b.question_id,b.result from question_practice_detail b where month(b.date) = '08' 第三步 连接两个表,得到复旦大学在8月答题的人 用到的函数:sum(if(a,1,0)) select...