We would like to achieve this result
WHERE text LIKE "%quick%"
AND text LIKE "%brown%"
AND text LIKE "%fox%"
Example
Searching for 'fein multi master' should product the same results as 'fein multimaster'
It seems like we could achieve this with either regex or ngrams but our developers are having a hard time achieving this.
Has any had any success with something like this?