2
I wonder if I can do a similarity search in a field like character varying
in Postgresql.
For example: The name I have saved in the table in the name field is Tauros
and I’m looking for Taurros
. I wanted something that would return me the degree of similarity between what was typed and what I found.
Remembering that I am using the version 8.4 of postgresql and also I have no way to do installations on the server, because it is a company that divides the bank. That is, I cannot use the fuzzystrmatch module, with the functions soundex()
and difference()
As I said, it would not be possible to use the new functions, because these functions depend on libraries that have to be installed and I do not have access. But thank you.
– lionbtt