题解 | #查询2022年以来刷题用户的用user_id#
查询2022年以来刷题用户的用user_id和毕业院校
https://www.nowcoder.com/practice/ea7d9e67f14e4cfc860bbbe9f65420a6
-- 查看数据类型,date类型可以用比较运算符 select user_id, university from user_info where user_id in (select user_id from questions_pass_record where date >= '2022-01-01')