We just transfer all mysql queries as %% to MATCH Against
Our old waS request
SELECT * from jobs where jobtitle like '%php%'
I tried the following queries
SELECT * from jobs where MATCH(jobtitle) AGAINST ('php') SELECT * from jobs where MATCH(jobtitle) AGAINST ('php' IN BOOLEAN MODE)
I tried * + and all but one query show the same exact results that look like "% php%"
I need a mysql query using match to to find the word anywhere in the job title
source share