在 MySQL 中以类似示例为基础实现 WHERE IN 与 OR
IN 在 MySQL 中使用索引,而 OR 不使用索引。
首先,我们创建一个表 -
mysql> create table DemoTable711 ( Id int, Name varchar(100) ); Query OK, 0 rows affected (0.92 sec)
使用 insert 命令向表中插入一些记录 -
mysql> insert into DemoTable711 values(100,'Chris'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable711 values(101,'Robert'); Query OK, 1 row affected (0.14 sec) mysql> insert into DemoTable711 values(102,'Carol'); Query OK, 1 row affected (0.35 sec) mysql> insert into DemoTable711 values(103,'Mike'); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable711 values(104,'Sam'); Query OK, 1 row affected (0.15 sec)
使用 select 语句显示表中的所有记录 -
mysql> select *from DemoTable711;
这将产生以下输出 -
+------+--------+ | Id | Name | +------+--------+ | 100 | Chris | | 101 | Robert | | 102 | Carol | | 103 | Mike | | 104 | Sam | +------+--------+ 5 rows in set (0.00 sec)
以下是 IN() 方法的查询 -
mysql> select *from DemoTable711 where Id IN(101,103,104);
这将产生以下输出 -
+------+--------+ | Id | Name | +------+--------+ | 101 | Robert | | 103 | Mike | | 104 | Sam | +------+--------+ 3 rows in set (0.03 sec)
以下是 OR 的查询 -
mysql> select *from DemoTable711 where Id=101 OR Id=103 OR Id=104;
这将产生以下输出 -
+------+--------+ | Id | Name | +------+--------+ | 101 | Robert | | 103 | Mike | | 104 | Sam | +------+--------+ 3 rows in set (0.00 sec)
广告