//拆解分为两步 //1.找出user_profile所要查询的大学的device_id //2.在question_practice_detail表中找出对应的信息 select device_id, question_id, result from question_practice_detail where device_id=( select device_id from user_profile where university="浙江大学") order by question_id asc;