欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决mysql 组合AND和OR带来的问题

程序员文章站 2022-06-22 18:42:58
如下所示:select prod_name,prod_price from products where vend_id = 1002 or vend_id= 1003 and prod_price...

如下所示:

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 AND OR