sql - MySQL Boolean search with wildcard character not working -


i have used mysql boolean search mode on table using "fulltext" key on value. using engine=myisam.

when search value 16-asdf using 16* not returning me in result . if i have value 16asdf returned when search using 16*

here query:

select  *   my_search ms  match (ms.value) against ('16*' in boolean mode)  order ms.id limit 100  

it returns result values 1612345, or 16asdf no result returned rows having value 16-asdf or 16-xxxx

can please let me know why happening?


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -