[MySQL] 原生全文检索 fulltext 的简单应用

 

在目标字段上添加全文检索:alter table 表名 add fulltext(字段) with parser ngram

 

查询语句:select * from xxx where match(字段) against (‘检索词‘ in natural language mode)

 

多字段和多个词检索:select * from xxx where match(字段1, 字段2) against (‘检索词1 检索词2‘ in natural language mode)

检索词之间空格隔开代表 或 查询。

 

ngram全文检索插件支持中文分词,当然也可以外部程序分词后再进行查询。

 

Doc:https://dev.mysql.com/doc/refman/8.0/en/fulltext-natural-language.html

Link:https://www.cnblogs.com/farwish/p/14406662.html

[MySQL] 原生全文检索 fulltext 的简单应用

上一篇:GO学习-(22) Go语言操作MySQL


下一篇:基于mysql验证的vsftpd虚拟用户