Using SQL with a ODBC source...<br>
<br>
Is there a way that I can create a query that will return a word approximate score such as: (refering to a table with first_name (text), last_name (text), ...<br>
<br>
A user could enter "Colinsworth" as a parameter and the query would return all records that had an exact match of Colinsworth (which would be 0 records in this case with a score of 100%). <br>
<br>
Also, it would return the records of "Collinsworth" at a very high score and records of "Collins" at a medium score.<br>
<br>
I understand how to set up SQL queries using parameters, I just don't know how to score word approximatly.<br>
<br>
The underlying result would be a name search that would return the closest name(s) if an exact name isn't found<br>
<br>
Thanks
<br>
Is there a way that I can create a query that will return a word approximate score such as: (refering to a table with first_name (text), last_name (text), ...<br>
<br>
A user could enter "Colinsworth" as a parameter and the query would return all records that had an exact match of Colinsworth (which would be 0 records in this case with a score of 100%). <br>
<br>
Also, it would return the records of "Collinsworth" at a very high score and records of "Collins" at a medium score.<br>
<br>
I understand how to set up SQL queries using parameters, I just don't know how to score word approximatly.<br>
<br>
The underlying result would be a name search that would return the closest name(s) if an exact name isn't found<br>
<br>
Thanks