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")
工作正常。
有可能吗?
答案 0 :(得分:0)
FullText索引搜索无法使用部分单词