工具篇:mysql(五)——查询中的and和or

在sql查询中and与or混合使用时,or的优先级低于and,即or前面的多个and条件相当于带有括号,or后面的多个and条件也相当于带有括号,or前后的条件是并列关系。

如果需要单个条件的或,那么需要使用括号改变优先级。

比如对于如下表

create table test(
id bigint not null auto_increment primary key,
name varchar(30) not null default '',
gender tinyint not null default 1,
phone char(11) not null default '',
mail varchar(30) not null default '',
company varchar(30) not null default ''
);

内容数据如下

工具篇:mysql(五)——查询中的and和or

下面两句sql的查询结果是相同的

  select * from test where phone='15810001234' and id=1 and name='张三' or id=2 and company='腾讯' and name='李四' or company='阿里' and id=3 and name='王五' ;

  select * from test where (phone='15810001234' and id=1 and name='张三') or (id=2 and company='腾讯' and name='李四') or (company='阿里' and id=3 and name='王五') ;

 

上一篇:Python爬虫〇四———稍微复杂的爬虫案例二


下一篇:Python爬虫:爬取无账号无限制获取企查查信息