注意 并不是所有的引擎都支持 全文检索
mysql最经常使用的引擎 INnodb 和 myisam 后者支持全文检索 前者不支持
创建表的时候指定要检索列
CREATE TABLE TEST_FULLTEXT(note_id int not null auto_increment,note_text text null,
primaty key(note_id),FULLTEXT(note_text)
)engine=myisam;
fulltext 索引某个列 fulltext(note_text) ,在某note_text列上建立全文索引
插入数据
然后用 match()指定列 Against()指定词
如 语句
select *
from TEST_FULLTEXT
where Match(note_text) Against('hello');
查找note_txt列中含有 hello词的行 返回的结果为 两行
note_text
'hello' was said by quester
quster say 'hello' to pp and he try again
既然这样 为何 不用 like语句呢 再来看上面例子 用like实现
select *
from TEST_FULLTEXT
where note_text like '%hello%';
返回的结果1样为两行
note_text
quster say 'hello' to pp and he try again
'hello' was said by quester
看采取全文搜索和like的返回结果 使用全文搜索的返回结果是已排好序的 而 like的返回结果则没有
排序主要是针对 hello出现在行的位置
全文结果中 第1个词 和 第3个词 like则没有按顺序排
我们可以采取下面方式查看 表中某1列 在某1个词的等级 ,继续用上面的例子
select note_text, Match(note_text) Aginst('hello') as rannk
from TEST_FULLTEXT
输出以下:
note_text rank
fhgjkhj 0
fdsf shi jian 0
quster say 'hello' to pp and he try again 1.3454876123454
huijia quba 0
'hello' was said by quester 1.5656454547876
当你想要在note_text 中查找 pp时 从上面知道 只有1行 如果用下面语句
select note_text
from test_fulltext
where match(note_text) against('pp');
返回结果是
note_text
quster say 'hello' to pp and he try again
如果采取扩大查询,分为以下3部
select note_text
from test_fulltext
where match(note_text) against('pp' with query expansion);
返回结果
note_text
quster say 'hello' to pp and he try again
'hello' was said by quester
如pp本来有的行中含有 hello 所以hello也作为关键字
即便没有建立fulltext索引也能够用,但是速度非常慢 没有50%规则 (参见下 50%规则介绍)
可以用包括特定意义的操作符,如 +、-、"",作用于查询字符串上。查询结果不是以相干性排序的。
如语句
select note_text
from test_fulltext
where match(note_text) against('hello -pp*' IN BOOLEAN MODE );
表示匹配hello但是不包括 pp的行 结果为
note_text
'hello' was said by quester
全文检索的1些说明 和限制
50% 规则
如果1个词出现在50%以上的行中,那末mysql将他作为1个非用词疏忽 50%规则不适用于布尔查询
如果行数小于3行 则不返回结果 参考 50%规则