Can anyone help me understand why
Code:
SELECT *
FROM `SITES_RANGE`
WHERE MATCH (
NAME
)
AGAINST (
'+sip +compressors'
IN BOOLEAN
MODE
)
returns exactly the same results as
Code:
SELECT *
FROM `SITES_RANGE`
WHERE MATCH (
NAME
)
AGAINST (
'sip compressors'
)
Im using mysql 4.1.
I was hoping that the boolean mode search would only find results with both of the words in the match field. But its returning the same as the simple full text search. What am i doing wrong?