不是所有的数据表都支持全文检索 MySQL支持多种底层数据库引擎,但是并非所有的引擎支持全文检索 ,目前最常用引擎是是MyISAM和InnoDB;前者支持全文检索,后者不支持。
booolean模式操作符
文章来源:https://www.toymoban.com/news/detail-852146.html
实验:
表productnotes :文章来源地址https://www.toymoban.com/news/detail-852146.html
1.查询包含rabbit的行,并按照相关性排序
SELECT note_text
FROM productnotes
WHERE Match(note_text) Against('rabbit');
2.显示每一条的相关性值
mysql> SELECT note_text,
-> Match(note_text) Against('rabbit') AS match_rank
-> FROM productnotes
3.有heavy 但是没有rope
mysql> SELECT note_text
-> FROM productnotes
-> WHERE Match(note_text)
-> Against('heavy -rope*' IN BOOLEAN MODE);
4.都有
SELECT note_text
FROM productnotes
WHERE Match(note_text)
Against('+rabbit +bait' IN BOOLEAN MODE);
5.有一个就行
SELECT note_text
FROM productnotes
WHERE Match(note_text)
Against('rabbit bait' IN BOOLEAN MODE);
6.必须是引号中间的样子
SELECT note_text
FROM productnotes
WHERE Match(note_text)
Against('"rabbit bait"' IN BOOLEAN MODE);
7.排序是rabbit靠前 carrot 靠后
SELECT note_text
FROM productnotes
WHERE Match(note_text)
Against('>rabbit <carrot' IN BOOLEAN MODE);
到了这里,关于MySQL——全文检索的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!