gpt4 book ai didi

MySql 查询在字段中包含一个字符串

转载 作者:可可西里 更新时间:2023-11-01 07:30:55 24 4
gpt4 key购买 nike

这个问题可能被问过好几次,我都检查过了,但我找不到答案。我的数据库“测试”中有一个名为变量的字段。我已经完成了查询

select 'variables' from test WHERE variables LIKE '%{$ifIndex}%';

变量字段包含逗号分隔的字符串,如 ifIndex、IfType、IfStatus但我无法得到它!

最佳答案

尝试以下操作:

select variables from test WHERE 'ifIndex' LIKE CONCAT('%',`variables` , '%') ;

如果您只想匹配开头:

select variables from test WHERE 'ifIndex' LIKE CONCAT(`variables` , '%') 

关于MySql 查询在字段中包含一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14847181/

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