I want to search for the occurrence of words in a database row. I use SQLite as a database. The search needs to be case-insensitive.
Let's say row x is Hello. Today is Monday
and I want to search for Hello Monday Bye
and still return the row x because the Hello
and Monday
exist in the row.
I used Like operator %Hello%Tuesday%Bye%
but this defiantly doesn't work and I can't use Glob
because it's not case-insensitive. Any suggestion, how can I do the search?
Also, the order shouldn't matter and Monday Hello
should return a row as well