环境详细信息 (XAMPP) Apache/2.4.4 (Win32) OpenSSL/1.0.1e PHP/5.5.3 服务器版本:5.6.11 - MySQL Community Server
我有一个搜索栏来搜索与我没有建立关系的新用户。当我添加搜索参数时,我有时会得到结果,有时却没有得到结果。
为什么会出现以下情况?
搜索:“Sarah T”返回用户 Sarah Testname 的信息
虽然搜索:“莎拉测试”不返回任何内容。
我使用 trim() 和 str_replace() 删除白色字符。即“Sar a h”变成“Sarah”
在数据库中:
firstname | lastname
Sarah | Testname
Robert | Richards
使用以下存储过程:
DROP PROCEDURE IF EXISTS `get_contact_list_new`//
CREATE DEFINER=`root`@`localhost` PROCEDURE `get_contact_list_new`(
IN _id bigint(20),
IN _args varchar(255)
)
BEGIN
IF _args IS NULL THEN
SELECT u.* FROM user_user_relationship AS uur
RIGHT JOIN user AS u
ON uur.user_id_one = _id AND u.user_id = uur.user_id_two
WHERE u.user_id != _id AND uur.status IS NULL;
ELSE
SET @args = CONCAT("%",_args,"%");
SELECT u.* FROM user_user_relationship AS uur
RIGHT JOIN user AS u
ON uur.user_id_one = _id AND u.user_id = uur.user_id_two
WHERE u.user_id != _id AND uur.status IS NULL AND
(u.firstname LIKE @args OR u.lastname LIKE @args OR (u.firstname + u.lastname) LIKE @args OR u.username LIKE @args OR u.email LIKE @args) ;
END IF;
END//
有时我可以在中间添加随机字符,即返回 sarzqtes 和 Sarah Testname。
这是 MySQL Like 查询的错误吗?还是我的查询?不管它是什么——你能向我解释为什么吗?
这些问题也出现在 phpmyadmin mysql 控制台上。
call get_contact_list_new(1,"saraht")
返回有关 Sarah Testname 的信息
call get_contact_list_new(1,"sarahtes")
什么都不返回。