关于FullText索引搜索

时间:2018-02-10 15:22:29

标签: mysql

我试着在mysql 5.6 innodb上使用FullText 我有一个像以下的查询:

select * from table_name where col like '%xamp%'

我试试:

select * from table_name where MATCH(col) AGAINST ("*xamp*")

但是不要工作

我需要搜索所有包含“xamp”,

的单词

如果我使用:

select * from table_name where MATCH(col) AGAINST ("example")

工作正常。

有可能吗?

1 个答案:

答案 0 :(得分:0)

FullText索引搜索无法使用部分单词