本文介绍了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)
这篇关于mysql 检查数字是否在逗号分隔的列表中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!