检索行时,MySQL中AND或OR运算符有什么区别?

AND,OR之间的区别在于,AND评估两个条件都必须为真,以使整体条件为真。OR求一个条件必须为真,以使整体条件为真。

让我们创建一个表-

mysql> create table demo70
−> (
−> id int not null auto_increment primary key,
−> name varchar(20),
−> age int
−> );

借助insert命令将一些记录插入表中-

mysql> insert into demo70(name,age) values('John',23);

mysql> insert into demo70(name,age) values('David',21);

mysql> insert into demo70(name,age) values('Mike',22);

mysql> insert into demo70(name,age) values('Chris',20);

mysql> insert into demo70(name,age) values('John',24);

mysql> insert into demo70(name,age) values('David',22);

使用select语句显示表中的记录-

mysql> select *from demo70;

这将产生以下输出-

+----+-------+------+
| id | name  | age  |
+----+-------+------+
|  1 | John  |   23 |
|  2 | David |   21 |
|  3 | Mike  |   22 |
|  4 | Chris |   20 |
|  5 | John  |   24 |
|  6 | David |   22 |
+----+-------+------+
6 rows in set (0.00 sec)

以下是OR运算符查询-

mysql> select *from demo70
−> where name="John" or age=22;

这将产生以下输出-

+----+-------+------+
| id | name  | age  |
+----+-------+------+
|  1 | John  |   23 |
|  3 | Mike  |   22 |
|  5 | John  |   24 |
|  6 | David |   22 |
+----+-------+------+
4 rows in set (0.00 sec)

在OR结果中,如果name为John,则条件为true。如果任何行的年龄为22,则为true。

现在让我们看一下AND运算符的结果。

查询如下-

mysql> select *from demo70
−> where name="John" and age=22;

这将产生以下输出-

Empty set (0.00 sec)

AND给出空集,因为没有一行具有相同的名字John和22岁。