MySQL 匹配包含百分比字符的字符串
我试图找到数据库行中的值,其中包括百分号。
例如,有一行的值“减少了10%”。
我需要过滤其中包含“10%”的结果,而不仅仅是“10”。
我试图
SELECT name, MATCH(name) AGAINST('10\%') AS score
FROM mytable
ORDER BY score DESC
但它返回了所有结果“10”。
有什么想法吗?
I am trying to find the value in db row, that include percentage sign.
For example, there is a value of a row "reduced by 10%".
I need to filter results that have "10%" in them, not just "10".
I was trying to
SELECT name, MATCH(name) AGAINST('10\%') AS score
FROM mytable
ORDER BY score DESC
But it returned all the results with "10".
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请尝试以下操作:
Try the following: