Hi All,
I have table with fulltext indexed column.
Entered single digit number into that column and using Match Against in query but values are not fetching.
If Entered double digit number into that column then getting result.
Example:
CASE1: No Result Coming in below queries
1. SELECT FROM tblpractice WHERE MATCH(ids) AGAINST ('5' IN BOOLEAN MODE);
2. SELECT FROM tblpractice WHERE MATCH(ids) AGAINST ('5,6' IN BOOLEAN MODE);
CASE2: Results Coming in below query
SELECT * FROM tblpractice WHERE MATCH(ids) AGAINST ('15' IN BOOLEAN MODE);
Please any one can help me to get results incase of single digit numbers.
Appreciate your help
Thanks
Praveen.P