创建
create table products (
id int NOT NULL AUTO_INCREMENT,
prod_id char(10) NOT NULL,
content text NULL,
PRIMARY KEY(id),
FULLTEXT(content)
) ENGINE = MyISAM;
匹配使用
select content
from products
where Match(content) Against('搜索词');
select id, Match(content) Against('搜索词') AS rank
from products;
//搜索出来的是包含了'搜索词'的等级值得 ,靠前越多,没有为0
扩展搜索
select content
from products
where Match(content) Against('搜索词' WITH QUERY EXPANSION);
//搜索匹配的,搜索匹配到的数据的相关词的其他数据行等等 按等级值排序
布尔文本搜索
select content
from products
where Match(content) Against('搜索词' IN BOOLEAN MODE);
select content
from products
where Match(content) Against('搜索词 -搜索词二*' IN BOOLEAN MODE);
//-表示排除后面的 *通用匹配
mysql5.6版本innodb也开始支持fulltext
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。