What about a regexp match ? -----Original Message----- From: pgsql-general-owner@xxxxxxxxxxxxxx [mailto:pgsql-general-owner@xxxxxxxxxxxxxx] On Behalf Of Tom Lane Sent: Thursday, February 06, 2014 10:32 AM To: alexandros_e Cc: pgsql-general@xxxxxxxxxxxxxx Subject: Re: Postgresql GROUP BY "SIMILAR" but not equal values alexandros_e <alexandros.ef@xxxxxxxxx> writes: > Is there a way in SQL or PostgreSQL in general to group by values than > are not exactly the same but are quite similar (like 'ABC' and 'ABCD') > based on some distance function (levenshtein for example) if the > distance is within some threshold (i.e., 1) Well, you can GROUP BY the result of a function. You are going to have to think harder than the above in any case. For example, it's not hard to imagine a "similarity" operator that says that A is similar to B, and B is similar to C, but if you ask it to compare A to C it says they're not similar (enough). Now what? Are A,B,C all part of the same group? If you take the transitive closure of such an operator you probably end up with everything in one group; but if you don't, it's hard to see a principled result at all. If you can cast your problem as transformation of the values into some canonical or representative form, then you can do that and then group on simple equality of the canonical values. For instance case-insensitive grouping is customarily done with GROUP BY lower(x) regards, tom lane -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general