子查询方法:

select   user_id,university

from user_info

where user_id in (

select user_id from questions_pass_record

wheredate >='2022-01-01')

user_info作为主表就行,这个题就像个脑筋急转弯,实际上不难,难的是换个角度看问题,经常刷题习惯性的将第一个表作为主表,反过来看就很简单了