MySQL - 为“任意数量的空格”添加通配符;在 CONCAT 内?

发布于 2024-11-08 13:26:22 字数 749 浏览 0 评论 0原文

为什么这不起作用?

    SELECT up.first_name, up.last_name
    FROM user_profiles up 
    WHERE u.activated = 1
    AND up.first_name LIKE '%" . $search_term . "%'
    OR up.last_name LIKE '%" . $search_term . "%'
    OR CONCAT(up.first_name, '%', up.last_name) LIKE '%" . $search_term . "%'
    GROUP BY up.last_name
    ORDER BY up.last_name ASC;

当用户输入 joe 时,我的自动完成功能会返回 joe smith。 当用户输入 smith 时,我的自动完成功能会返回 joe smith

但是当用户输入 joe smith 时,我的自动完成功能返回空白。

我希望 CONCAT 行能够在用户输入 first_name [中间有任意数量的空格] last_name 时返回结果。

我相信 % 适用于任意数量的字符,但不适用于任意数量的空格。有什么想法如何修复我的代码吗?

谢谢!

Why isn't this working?

    SELECT up.first_name, up.last_name
    FROM user_profiles up 
    WHERE u.activated = 1
    AND up.first_name LIKE '%" . $search_term . "%'
    OR up.last_name LIKE '%" . $search_term . "%'
    OR CONCAT(up.first_name, '%', up.last_name) LIKE '%" . $search_term . "%'
    GROUP BY up.last_name
    ORDER BY up.last_name ASC;

When the user enters joe my autocomplete returns joe smith.
When the user enters smith my autocomplete returns joe smith.

But when the user enters joe smith my autocomplete returns blank.

I want the CONCAT line to be able to return a result in case the user enters first_name [any number of spaces in between] last_name.

I believe % will work for any number of characters, but not for any number of spaces. Any ideas how to fix my code?

Thanks!

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

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

发布评论

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

评论(1

骑趴 2024-11-15 13:26:22

它不起作用,因为您正在 $search_term 中查找文字 % (以及名字和姓氏)

替换此行:

OR CONCAT(up.first_name, '%', up.last_name) LIKE '%" . $search_term . "%'

用此行:

OR ('".$search_term."'  REGEXP CONCAT(up.first_name,[[:blank:]],up.lastname) ) 

如果first_name 和last_name 不包含特殊的正则表达式字符,如$%^[] 等,这将起作用。

请参阅; http://dev.mysql.com/doc/refman/5.1/en /regexp.html
请注意,正则表达式不适用于多字节字符集,请在匹配之前将其转换为 latin1。

OR (CONVERT('".$search_term."' USING LATIN1) 
   REGEXP CONVERT(CONCAT(up.first_name,[[:blank:]],up.lastname) USING LATIN1) ) 

It doesn't work because you are looking for a literal % inside a $search_term (as well as the first and last names)

Replace this line:

OR CONCAT(up.first_name, '%', up.last_name) LIKE '%" . $search_term . "%'

with this line:

OR ('".$search_term."'  REGEXP CONCAT(up.first_name,[[:blank:]],up.lastname) ) 

This will work provided the first_name and last_name do not contain special regex chars like $%^[] etc.

See; http://dev.mysql.com/doc/refman/5.1/en/regexp.html
Note that regexp does not work with multibyte charsets, convert those to latin1 before matching.

OR (CONVERT('".$search_term."' USING LATIN1) 
   REGEXP CONVERT(CONCAT(up.first_name,[[:blank:]],up.lastname) USING LATIN1) ) 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文