I am working on a webpage linked to my database that has a search feature as the main function. Users have to search for Company's name to check which group the company belongs to etc. However, I need a fuzzy search logic to do company name screening. I tried many methods but the challenge is the company names are long. I used WHERE NAME LIKE %keywordfromform% but its not fuzzy enough.
For example:
Actual: ABC Company 123 ROAD
User search: Road 123 ABC Company
The result should appear but it doesn't show, this leads to inaccuracy in searches.
likecomparison for each term.