哪个更好?在 Mysql 查询的 where 子句中定位或 like %

发布于 2024-12-11 12:49:02 字数 492 浏览 0 评论 0原文

可能的重复:
MySQL LIKE 与 LOCATE

我需要编写一个 Mysql 查询,它根据 a 中的字符串选择行柱子。假设该列名为 TestColumn。我需要选择列中任何位置包含“stackoverflow”的所有行。使用哪个会更好

Select * from testtable where TestColumn like '%stackoverflow%'

,或者

Select * from testtable where Locate('stackoverflow', TestColumn)>0

哪个会带来更好的性能?提前致谢。

Possible Duplicate:
MySQL LIKE vs LOCATE

I need to write a Mysql query which chooses rows based on a string in a column. Say the column is named TestColumn. I need to choose all rows which contain 'stackoverflow' anywhere in the column. Would it better to use

Select * from testtable where TestColumn like '%stackoverflow%'

or

Select * from testtable where Locate('stackoverflow', TestColumn)>0

Which would result in a better performance? Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

王权女流氓 2024-12-18 12:49:02

这对于LIKE来说确实是一个问题。当子字符串的位置很重要时,应使用LOCATE

This is really a problem for LIKE. LOCATE should be used when the position of the substring is important.

樱花落人离去 2024-12-18 12:49:02

% 比函数调用更好。 % 将使用全文索引(如果存在)。函数调用则不然。

% is better than a function call. % will use full text index if it is existing. It is not the case with the function call.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文