I have the following query :
SELECT * FROM `user`
WHERE MATCH (user_login) AGAINST ('supriya*' IN BOOLEAN MODE)
Which outputs all the records starting with 'supriya'
.
Now I want something that will find all the records ending with e.g. 'abc'
.
I know that *
cannot be preappended and it doesn't work either and I have searched a lot but couldn't find anything regarding this.
If I give query the string priya
..it should return all records ending with priya
.
How do I do this?