This is my code to perform a search
SELECT d.deal_id,
d.deal_title,
d.friendly_url
FROM wp_deals AS d
WHERE MATCH (d.deal_title) AGAINST ('Ultimate Revitalisation Kit' IN BOOLEAN MODE)
GROUP BY d.deal_id
It works fine.
But when I search for Kit it becomes
SELECT d.deal_id,
d.deal_title,
d.friendly_url
FROM wp_deals AS d
WHERE MATCH (d.deal_title) AGAINST ('Kit' IN BOOLEAN MODE)
GROUP BY d.deal_id
and does not give any result although kit was there in the previous search result. I am not an expert with this type of search query. But I have to asked that search query should not be using like keyword i.e like '%kit%'. So that's why I am using against and match. Is anybody expert in this type of advanced query? Can you make it an outstanding search query? Please make it perfect. So it looks better than simple like query.