Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 806 Bytes

README.textile

File metadata and controls

22 lines (14 loc) · 806 Bytes

Levenshtein-SQL

Levenshtein-SQL implements the Levenshtein distance. It’s string metric for measuring the amount of difference between two sequences. This implemetation originally wrote by Jason Rust.

Usage

mysql> \. /path/to/mysql-function-levenshtein.sql

mysql> select levenshtein('LEONARDO', 'LEONARDU');
+-------------------------------------+
| levenshtein('LEONARDO', 'LEONARDU') |
+-------------------------------------+
|                                   1 |
+-------------------------------------+

Project info

Levenshtein-SQL is hosted on Github: http://github.com/vyper/levenshtein-sql, where your contributions, forkings, comments and feedback are greatly welcomed.