题解 | SQL14 操作符混合运用
可以利用括号,单独处理一部分的需求,然后再用or拼接起来。
select device_id, gender, age, university, gpa from user_profile where (gpa > 3.5 and university = '山东大学') or (gpa > 3.8 and university = '复旦大学');
可以利用括号,单独处理一部分的需求,然后再用or拼接起来。
select device_id, gender, age, university, gpa from user_profile where (gpa > 3.5 and university = '山东大学') or (gpa > 3.8 and university = '复旦大学');
相关推荐