In an Android application,
In SQLite
database, there is a column with the following data:
A~B~C~D~E~F
Where each of A,B,C,D,E and F could have variable length and data
For example,
A could be every possible interested name like Mike, Andy, Tom , ...
Or B could be any interested country name and so on
Now I need a Query to reach to D part, how?
FYI, '~' character
is unique in the data (there would be just 5 characters of '~')
In other word, A,B,C,D,E,F don't contain '~'
Edit: I need LIKE clause in a basic SQLite