IN 运算符的逗号分隔参数,MySQL

发布于 2024-10-02 05:41:27 字数 381 浏览 6 评论 0原文

我有一张表,其中以下查询工作正常:

select * 
from session_actions 
where action_type IN ('login_failed','channel_recorded')

现在我期待类似以下的内容:

select * 
from session_actions 
where action_type IN ('login_failed,channel_recorded')

如您所见,我想为 IN 运算符提供一个逗号分隔的参数,但它不可能

如何将此逗号分隔的字符串转换为 IN 运算符可接受的参数列表?

I have a table in which the following query works fine:

select * 
from session_actions 
where action_type IN ('login_failed','channel_recorded')

Now I'm looking forward to some thing like the following:

select * 
from session_actions 
where action_type IN ('login_failed,channel_recorded')

As you see I want to give the IN operator one single comma separated parameter, but it is not possible

How can I convert this comma separated string into a list of parameters which is acceptable to IN operator?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

私藏温柔 2024-10-09 05:41:27

您可能正在寻找 FIND_IN_SET() 功能。

select * 
from session_actions 
where find_in_set(`action_type`,'login_failed,channel_recorded');

示例小提琴

You might be looking for FIND_IN_SET() function.

select * 
from session_actions 
where find_in_set(`action_type`,'login_failed,channel_recorded');

SAMPLE FIDDLE

此生挚爱伱 2024-10-09 05:41:27

我尝试了FIND_IN_SET,但速度非常慢。从那时起,我宁愿使用 haystack REGEXP CONCAT('[[:<:]]', Needle, '[[:>:]]') 。

I tried FIND_IN_SET but it was super slow. I rather use haystack REGEXP CONCAT('[[:<:]]', needle, '[[:>:]]') since then.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文