select u1.device_id,u1.gender,u1.age,u1.university,u1.gpa from user_profile u1 where u1.university in("北京大学","复旦大学","山东大学");
有些小伙伴写测试的时候,可能想要去写not in; 单个测试样例可以,但是后面的测试样例过多,所以不推荐使用。
select u1.device_id,u1.gender,u1.age,u1.university,u1.gpa from user_profile u1 where u1.university in("北京大学","复旦大学","山东大学");
有些小伙伴写测试的时候,可能想要去写not in; 单个测试样例可以,但是后面的测试样例过多,所以不推荐使用。