题解 | #浙江大学用户题目回答情况#
浙江大学用户题目回答情况
https://www.nowcoder.com/practice/55f3d94c3f4d47b69833b335867c06c1
//拆解分为两步 //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;

