Sniffing full text search for the word "pluto" from web interface I see this filter:
Code: Select all
where ArticleFulltext.article_value like '%pluto%'
But I can create a fulltext index
To use the fulltext index the query must be:
Code: Select all
MATCH(ArticleFulltext.article_value) AGAINST ('pluto' IN BOOLEAN MODE)
thanks