description |
---|
Computes the Levenshtein distance between two input expressions. |
- expression1: The first string expression.
- expression2: The second string expression.
Examples
{% code title="LEVENSHTEIN example" %}
SELECT LEVENSHTEIN('spice', 'iceberg')
-- 6
{% endcode %}