gpt4 book ai didi

mysql - 匹配sql中的多个数字并获取行中所有匹配项的计数

转载 作者:行者123 更新时间:2023-11-29 12:24:28 25 4
gpt4 key购买 nike

我在 sql 中有 3 行:

sno        ids
1. 5,6,7
2. 6,8
3. 5,7,8

我想知道有多少用户的最大匹配数为 (5,6,7),例如:,Sno。 2 有 1,Sno 3 有 2,依此类推。是否有查询/方法可以做到这一点,或者不可能?

最佳答案

虽然我强烈建议规范化您的数据库(即不在列中存储逗号分隔的字符串),但这里有一个使用 casefind_in_set 的选项:

select sno, 
case when find_in_set(5, ids) then 1 else 0 end +
case when find_in_set(6, ids) then 1 else 0 end +
case when find_in_set(7, ids) then 1 else 0 end cnt
from yourtable
group by sno

关于mysql - 匹配sql中的多个数字并获取行中所有匹配项的计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28553678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com