1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-05 08:08:02 +00:00

Add Compute The Levenshtein Distance Of Two Strings as a postgres til

This commit is contained in:
jbranchaud
2019-08-12 15:02:08 -05:00
parent 52d5def86e
commit 9c9c8a5f23
2 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
# Compute The Levenshtein Distance Of Two Strings
PostgreSQL has a built-in function for computing the [Levenshtein
distance](https://en.wikipedia.org/wiki/Levenshtein_distance) between two
strings.
```sql
> select levenshtein('hello', 'world');
levenshtein
-------------
4
> select levenshtein('function', 'funtcion');
levenshtein
-------------
2
```
Check out the [`fuzzystrmatch`
module](https://www.postgresql.org/docs/current/fuzzystrmatch.html#id-1.11.7.24.6)
for more details.