题解 | 操作符混合运用

操作符混合运用

https://www.nowcoder.com/practice/d5ac4c878b63477fa5e5dfcb427d9102

-- and的优先级大于or 如果不确定可以用()来改变运算的优先级

select device_id,gender,age,university,gpa
from user_profile
where (gpa>3.5 and university="山东大学") 
   or (gpa>3.8 and university="复旦大学")
order by device_id asc;

-- 复杂的方式,子查询

select device_id,gender,age,university,gpa
from user_profile
where 
device_id in (select device_id from user_profile where gpa>3.5 and university="山东大学")
or
device_id in (select device_id from user_profile where gpa>3.8 and university="复旦大学");

全部评论

相关推荐

01-12 09:24
门头沟学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务