I am interested in algorithm in T-SQL calculating Levenshtein distance.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Arnold Fribble proposes this one:
|
|||||||||
|
|
IIRC, with SQL Server 2005 and later you can write stored procedures in any .NET language: Using CLR Integration in SQL Server 2005. With that it shouldn't be hard to write a procedure for calculating Levenstein distance. A simple Hello, World! extracted from the help:
Then in your SQL Server run the following:
And now you can test run it:
Hope this helps. |
|||
|
|
|
|
|||
|
|
You can use Levenshtein Distance Algorithm for comparing strings Here you can find a T-SQL example at http://www.kodyaz.com/articles/fuzzy-string-matching-using-levenshtein-distance-sql-server.aspx The algorithm simply returns the stpe count to change one string into other by replacing a different character at one step |
|||
|
|