使用 MySQL WHERE.. OR 查询并带有多个 OR 用法。是否有替代方案?
是的,可以使用 REGEXP 作为 MySQL “WHERE.. OR” 的替代方案。
让我们首先创建一个表 −
mysql> create table DemoTable684(EmployeeInformation text); Query OK, 0 rows affected (0.68 sec)
使用 insert 命令向表中插入一些记录 −
mysql> insert into DemoTable684 values('John 21 Google'); Query OK, 1 row affected (0.15 sec) mysql> insert into DemoTable684 values('Carol 23 Amazon'); Query OK, 1 row affected (0.16 sec) mysql> insert into DemoTable684 values('Carol 26 Flipkart'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable684 values('David 29 Microsoft'); Query OK, 1 row affected (0.18 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable684;
这将产生以下输出 −
+---------------------+ | EmployeeInformation | +---------------------+ | John 21 Google | | Carol 23 Amazon | | Carol 26 Flipkart | | David 29 Microsoft | +---------------------+ 4 rows in set (0.00 sec)
以下是使用 REGEXP 实现 MySQL where...OR 的查询 −
mysql> select *from DemoTable684 where EmployeeInformation REGEXP '(David|29|Microsoft)';
这将产生以下输出 −
+---------------------+ | EmployeeInformation | +---------------------+ | David 29 Microsoft | +---------------------+ 1 row in set (0.00 sec)
Advertisements