I'd like to create a query which will return all entries containing a specific word, and some others which containing a percentage (e.g. 80%) of the characters.
For example:
Searching for 'ever' should return 'ever', 'whatever', 'never', 'fever' (this could be easily done with LIKE '%ever%'), but also some other words like 'even' (75% matched), 'over' etc...
How's that possible?