2
votes

I want similar function like soundex('anne')

dmetaphone('anne') when I am trying to execute above query . It will give following error.

ERROR: function dmetaphone(unknown) does not exist

1
Why do you think that the function dmetaphone should be exist? - Hamlet Hakobyan
i m trying another function like . soundex('anne') it will give same error - Azhar Khan

1 Answers

6
votes

You probably forgot to add the fuzzystrmatch extension. Make sure that the contrib modules are installed, then run the following as superuser

CREATE EXTENSION fuzzystrmatch;

Then the function will be defined.