I have simple table but cant get relevance results for some reason.
In my table i have next records
Кухненски шкафове и модули
Офис модули
Модули за спалня
Модулни секции
Модулни кухни
Модулни гардероби
When i execute this query
SELECT DISTINCT
name,
MATCH(name) AGAINST('моду*' IN BOOLEAN MODE) AS score
FROM category scs
WHERE
MATCH(name) AGAINST('моду*' IN BOOLEAN MODE)
I expect 1st to return all strings that start with 'моду' like this
Модули за спалня
Модулни секции
Модулни кухни
Модулни гардероби
Офис модули
Кухненски шкафове и модули
but im getting order like this
Кухненски шкафове и модули
Модули за спалня
Офис модули
Модулни секции
Модулни кухни
Модулни гардероби
How can i order them 1st to return all string that start with searched phrase ?