mysql 检查数字是否在逗号分隔的列表中

2021-11-20 00:00:00 list mysql

我有一张这样的桌子:

UID(int) NUMBERS(blob)
----------------------
1        1,13,15,20
2        3,10,15,20
3        3,15

我想测试 3 和 15 是否在名为 NUMBERS 的 blob 中.并且可以看到 LIKE %% 不能使用

And I would like to test if 3 and 15 are in the blob called NUMBERS. And can see the LIKE %% cannot be used

仅选择 ID 为 2 和三个 scoulb 的行...

Only row with ID 2 and three scoulb be selected...

推荐答案

这个也有效:

SELECT * FROM table WHERE 3 IN (NUMBERS) AND 15 IN (NUMBERS)

使用 IN 将查看逗号分隔的字符串,例如.这两个

using the IN will look into a comma separated string eg. these two

WHERE banana IN ('apple', 'banana', 'coconut')
WHERE 3 IN (2,3,6,8,90)

在此页面上找到的信息:

相关文章