I want to search a specific column in a table so that the returned result set must satisfy the following two conditions:
The returned result set must contain records, 90% of the characters match the specified search text.
The returned result set must have entries, 70% of consecutive characters match the specified search text.
This means that when searching for the 10-character word Sukhminder:
he must return records such as Sukhmindy, Ukhminder, Sukhmindr, because he fulfills both of the above conditions.
But he should not return records such as Sukhmixder, because he does not fulfill the second condition. Similarly, it should not return a Sukhminzzz entry because it does not fulfill the first condition.
I am trying to use the SQL Server full-text search feature. But so far it has not been possible to formulate the required request. Please reply as soon as possible.
source share