I have a situation with a website who lists products.
I'm using a fulltext index with a Match Against search
There is a field named "itemcode" that field is in varchar type
turns out one of the codes for instance, goes like
"WTC-153-U"
And when i type on the textbox "WTC-153" i get no results, i guess it's based on the hyphen and numbers, is there any workaround or a better method for this?
I cannot seem to find a solution at the moment without having to modify that much code
The query goes like this
SELECT field FROM table WHERE MATCH(itemcode) AGAINST ('WTC-153')
Thanks