题解 | #你真的理解or 和and了吗#
操作符混合运用
http://www.nowcoder.com/practice/d5ac4c878b63477fa5e5dfcb427d9102
在逻辑运算中,或运算优先级 低于 与运算优先级
true && true || true && false 结果是true,一真则真,但不会执行到true && false,也叫短路逻辑运算符
true & true | true && false 结果是true,一真则真,会执行到true && false
SELECT device_id,gender,age,university,gpa FROM user_profile
WHERE gpa > 3.5 and university='山东大学' OR gpa >3.8 and university='复旦大学'