如何从值列表中查找特定的 MySQL varcahr id?


要从列表获得特定 varchar ID,你可以使用 FIND_IN_SET()。我们首先创建一个表格 -

mysql> create table DemoTable
(
   Id varchar(255)
);
Query OK, 0 rows affected (0.51 sec)

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

mysql> insert into DemoTable values('10,100,1000');
Query OK, 1 row affected (0.21 sec)
mysql> insert into DemoTable values('101,120,2');
Query OK, 1 row affected (0.14 sec)
mysql> insert into DemoTable values('3,4,5');
Query OK, 1 row affected (0.11 sec)

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

mysql> select *from DemoTable;

这将产生以下输出 -

+-------------+
| Id          |
+-------------+
| 10,100,1000 |
| 101,120,2   |
| 3,4,5       |
+-------------+
3 rows in set (0.00 sec)

以下是在 MySQL 中查找 id 的查询 -

mysql> select *from DemoTable where find_in_set('2',Id);

这将产生以下输出 -

+-----------+
| Id        |
+-----------+
| 101,120,2 |
+-----------+
1 row in set (0.03 sec)

更新于: 2019 年 9 月 25 日

207 次浏览

开启你的 职业生涯

完成课程获得认证

开始
广告