MySQL find_in_set与多个搜索字符串 [英] MySQL find_in_set with multiple search string

查看:1008
本文介绍了MySQL find_in_set与多个搜索字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我发现 find_in_set 仅按单个字符串进行搜索:-

I find that find_in_set only search by a single string :-

find_in_set('a', 'a,b,c,d')

在上面的示例中,"a"是唯一用于搜索的字符串.

In the above example, 'a' is the only string used for search.

是否可以使用find_in_set类型的功能并按多个字符串进行搜索,例如:-

Is there any way to use find_in_set kind of functionality and search by multiple strings, like :-

find_in_set('a,b,c', 'a,b,c,d')

在上面的示例中,我想通过三个字符串'a,b,c'进行搜索.

In the above example, I want to search by three strings 'a,b,c'.

我看到的一种方法是使用 OR

One way I see is using OR

find_in_set('a', 'a,b,c,d') OR find_in_set('b', 'a,b,c,d') OR find_in_set('b', 'a,b,c,d')

还有其他方法吗?

推荐答案

没有本机功能,但是您可以使用以下技巧来实现目标

there is no native function to do it, but you can achieve your aim using following trick

WHERE CONCAT(",", `setcolumn`, ",") REGEXP ",(val1|val2|val3),"

这篇关于MySQL find_in_set与多个搜索字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆