解决mysql 组合AND和OR带来的问题
如下所示:
select prod_name,prod_price from products where vend_id = 1002 or vend_id= 1003 and prod_price >= 10;
上面这条语句 返回的结果不是我们想要的。
分析:
原因在于计算的次序。sql 在处理or操作符前 优先处理and操作符。当sqk看到上述where子句时,由于and在计算次序中优先级更高,操作符被错误的组合了。
此问题的解决方法是使用圆括号明确地分组相应的操作符。
请看下面的select 语句
select prod_name,prod_price from products where( vend_id = 1002 or vend_id= 1003) and prod_price >= 10;
补充知识:mysql| 组合where子句过滤数据(and,or,in,not)
mysql 允许使用多个where子句,组合where子句允许使用两种方式使用:and 和or子句的方式使用.
数据库中的操作符号:and , or , in , not.
and:
select * from products where products.vend_id = 1003 and products.prod_price <= 10;
or:
select * from products where products.vend_id = 1002 or products.vend_id = 1003 ;
in:
建议能使用in的子句中不使用or,in行性能好,方便理解.
select * from products where products.vend_id in (1002,1003);
not:
mysql对not的支持仅在对in,between,exists子句取反,这与其他多数数据库对各种条件都支持不同.
select * from products where products.vend_id not in (1002,1003);
注意:
在同时有and和or的子句中,mysql是优先处理and操作的.一般建议使用()来确定处理顺序和消除歧义.
比如:
select * from products where (products.vend_id= 1002 or products.vend_id=1003) and prod_price >= 10;
以上这篇解决mysql 组合and和or带来的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
mysql 忘记密码的解决方法(linux和windows小结)
-
Windows 64 位 mysql 5.7以上版本包解压中没有data目录和my-default.ini及服务无法启动的快速解决办法(问题小结)
-
MYSQL本地安装以及出现的问题解决
-
win10下MySQL 8.0登录Access denied for user‘root’@‘localhost’ (using password: YES)问题的解决方法
-
MySQL中NOT IN填坑之列为null的问题解决
-
解决修改mysql的data_dir所引发的错误问题
-
web.py在SAE中的Session问题解决方法(使用mysql存储)
-
JavaScript限制在客户区可见范围的拖拽(解决scrollLeft和scrollTop的问题)(2)
-
mysql报错1033 Incorrect information in file: ‘xxx.frm’问题的解决方法
-
mysql启动时出现ERROR 2003 (HY000)问题的解决方法