Last updated 3 years ago
Was this helpful?
PostgreSQL has a built-in function for computing the between two strings.
> select levenshtein('hello', 'world'); levenshtein ------------- 4 > select levenshtein('function', 'funtcion'); levenshtein ------------- 2
Check out the for more details.
fuzzystrmatch