Let's say an SQLite database column contains the following value:
U Walther-Schreiber-Platz
Using a query I'd like to find this record, or any similar records, if the user searches for the following strings:
walther schreiber
u walther
walther-schreiber platz
- [Any other similar strings]
However I cannot figure out any query which would do that. Especially if the user does not enter the -
character.
Example:
select * from myTable where value like '%walther schreiber%';
would not return the result because of the missing -
.
Thanks, Robert