I am having an issue for both side MATCH in SQLite FTS in Android.
Say suppose I have this text item in my VIRTUAL FTS TABLE
- Hello World I am here
- HelloWorld I am Here
- HelloWorldIamHere
I want to achieve that for Search String 'World' I should get all this THREE results.
I am able to achieve that using LIKE and % wildcard as WHERE column LIKE '%World%'
but that is not meant to use as data grows. So I am using MATCH and * wildcard with Full Text Search Virtual Table as WHERE column MATCH 'World*'
BUT with this i am just getting this result...
- Hello World I am here
How should i implement my MATCH query to get all the three items as my result