How to add levenshtein function in mysql?

I have connected to my MySQL server and simply executed this statement in MySQL Workbench, and it simply worked – I now have new function levenshtein().

For example, this works as expected:

SELECT levenshtein('abcde', 'abced')

2

Leave a Comment