题解 | #查询2022年毕业用户的刷题记录#
查询2022年毕业用户的刷题记录
https://www.nowcoder.com/practice/e53e8797213748038a5faeb8563ba27a
select * from questions_pass_record where user_id in (select user_id from user_info where graduation_year = '2022') -- 取出2022毕业的学号,遍历筛选
查询2022年毕业用户的刷题记录
https://www.nowcoder.com/practice/e53e8797213748038a5faeb8563ba27a
select * from questions_pass_record where user_id in (select user_id from user_info where graduation_year = '2022') -- 取出2022毕业的学号,遍历筛选
相关推荐