gpt4 book ai didi

mysql错误: Llike operator throws error

转载 作者:行者123 更新时间:2023-11-29 07:10:15 25 4
gpt4 key购买 nike

我不知道我的查询出了什么问题,但它抛出了一些错误。

select * from tbl_emailswipes where 
eswipes_title like '% 1939 %',
or eswipes_title like '% 1939%',
or eswipes_title like '%1939 %',
or eswipes_title like '%1939%',
or eswipes_text like '% 1939 %',
or eswipes_text like '% 1939%',
or eswipes_text like '%1939 %',
or eswipes_text like '%1939%'

错误是

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '

      or eswipes_title like '% 1939%',
or eswipes_title like '%' at line 2

请帮忙解决这个问题

最佳答案

不需要逗号。但是,这会更容易写为:

select es.*
from tbl_emailswipes es
where concat(' ', es.eswipes_title, ' ') like '% 1939 %' or
concat(' ', es.eswipes_text, ' ') like '% 1939 %';

此查询中的逻辑简化了比较。它在列的开头和结尾添加分隔符 (' ')。这使得在模式中查找单词变得更加容易。

关于mysql错误: Llike operator throws error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40041225/

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