select device_id,gender,age,university,gpa
from user_profile
where university in ("北京大学","复旦大学","山东大学")

这个题目主要考察了条件筛选里面的 in,由于测试集包含了多个大学,这里也不方便使用 not in 。

in 在实际工作中,使用频率较高。