Computes the Levenshtein distance of the two given character expressions.
LEVENSHTEIN ( expression1, expression2 )
expression1
Is a character expression.
int
SELECT LEVENSTHEIN('kitten', 'sitting'); -- Returns 3
Functions