gpt4 book ai didi

mysql - REGEXP "and"运算符

转载 作者:行者123 更新时间:2023-11-29 13:27:14 29 4
gpt4 key购买 nike

我有一个名为“table”的数据库,如下所示:

id  content
1 a
2 a b c
3 b a
4 c e a

我想获取内容中“a”和“c”所在的所有 id。

我知道我可以找到内容中“a”或“c”所在的所有 id,如下所示:

select id
from table
where content regexp 'a|c'

但我不知道如何使用“AND”运算符

最佳答案

我不会使用正则表达式,而是使用 LIKE:

SELECT
id
FROM
`table`
WHERE
content LIKE '%a%'
AND content LIKE '%c%'

关于mysql - REGEXP "and"运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19968717/

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