当名称包含大写字符或不包含大写字符时,我在 mysql 中使用 LIKE 没有得到任何结果
示例
数据库中的名称:
-Sopa de pescado
-Sopa de tomate
如果我搜索:
“Sopa” -> 2 个结果
“pescado” -> 1 个结果
“sopa” -> 0 个结果:(
我该如何修复?
Example
Names in database:
-Sopa de pescado
-Sopa de tomate
if i search for:
"Sopa" -> 2 results
"pescado" -> 1 result
"sopa" -> 0 results :(
how can i fix?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将所有搜索查询转换为小写,然后使用如下查询
You can convert all your search queries to lowercase and then use a query like this
您可以在查询的 WHERE 部分使用 LOWER() 函数。有关函数详细信息,请参阅此处。
另外,您可以使用 COLLATION 运算符。在这种情况下,查询将按以下方式查看:
请参阅此处
You can use LOWER() function in WHERE part of your query. See here for function details.
Also, you may use COLLATION operator. In this case query will look in the following way:
See here for details.