mysql全文搜索返回没有记录

时间:2012-07-17 09:48:23

标签: mysql full-text-search

我没有得到任何返回的行,但我不知道为什么。我是否正确定义了全文索引?

CREATE TABLE `client_contact` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `first_name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
 `last_name` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
 `email` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
 `phone` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL,
 `company` int(11) DEFAULT NULL,
 `billing_address` text COLLATE utf8_unicode_ci,
 PRIMARY KEY (`id`),
 FULLTEXT KEY `client_search` (`first_name`,`last_name`,`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;


INSERT INTO `client_contact` (`first_name`, `last_name`, `email`, `phone`, `company`, `billing_address`) VALUES
('John', 'Smith', 'john.smith@company.com', '123456', 1, '1 Any Street'),
('Mary', 'Smith', 'mary.smith@company.com', '123456', 1, '1 Any Street');


SELECT cl.*
FROM client_contact cl 
WHERE MATCH(cl.first_name, cl.last_name, cl.email) AGAINST ('Smith')

SQL Fiddle here

1 个答案:

答案 0 :(得分:8)

这是因为关键字Smith存在于所有行中。 MySQL manual说“50%或更多行中出现的字词被认为是常见且不匹配”。