I have the below Code
SELECT * FROM table WHERE MATCH(message) AGAINST ('Hello*')
If the message string is like this
"HelloWhatsHappening"
It dosent Work return anything
But if i have
"Hello WhatsHappening"
It works fine
It will also work if the string is as such:
"Hello= WhatsHappening"
Any Ideas?