I've got a table of companies that I'm trying to search for by name, but it doesn't work like I expected so I'm hoping someone can explain what I'm doing wrong. Here's the query:
Code:
SELECT
*
FROM
companies AS com
WHERE
MATCH (
com.uc_company_name,
com.ks_company_name
) AGAINST (
'rör*'
IN BOOLEAN MODE)
The table has got a fulltext index on the two name columns and when I search for the phrase "rör" like in the query above, I get results like:
- Röragenten Björn Halvarsson
- Rörfirma K Å Karlsson AB
- Bede Rörservice AB
But this company gets left out:
Why is that?
Thanks in advance!