MySQL db查询可基于特定值从逗号分隔的值中获取记录

为此,您可以在MySQL中使用REGEXP。假设您要在行记录中使用逗号分隔的值均为90。为此,请使用正则表达式。

让我们首先创建一个表-

mysql> create table DemoTable1447
   -> (
   -> Value varchar(100)
   -> );

使用插入命令在表中插入一些记录-

mysql> insert into DemoTable1447 values('19,58,90,56');
mysql> insert into DemoTable1447 values('56,89,99,100');
mysql> insert into DemoTable1447 values('75,76,65,90');
mysql> insert into DemoTable1447 values('101,54,57,59');

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

mysql> select * from DemoTable1447;

这将产生以下输出-

+--------------+
| Value        |
+--------------+
| 19,58,90,56  |
| 56,89,99,100 |
| 75,76,65,90  |
| 101,54,57,59 |
+--------------+
4 rows in set (0.00 sec)

以下是基于特定值(即90,此处为90)从逗号分隔的值中提取记录的查询-

mysql> select * from DemoTable1447 where Value regexp '(^|,)90($|,)';

这将产生以下输出-

+-------------+
| Value       |
+-------------+
| 19,58,90,56 |
| 75,76,65,90 |
+-------------+
2 rows in set (0.00 sec)