I have a query which looks for a number of keywords which works fine using fulltext indexes but there is an issue with products like 'Adidas Adistar Salvation 3'
The 3 is actually important but the mysql fulltext index doesn't include it in the search.
What would be the best way to make sure a row contained "Adidas","Adistar" & "Salvation 3"
Normally the search would be:
SELECT * FROM products WHERE (title LIKE "%adidas%" AND title LIKE "%Adistar%" AND title LIKE "%Salvation%" AND title LIKE "%3%")
Many thanks Brett