I need to normalize a column for search purposes by stripping all non-alphanumeric characters:

  UPDATE my-table SET id_stripped = ??? id;

I have been playing with regexp_replace( id, ????,'');

  UPDATE my-table
       SET id_stripped = regexp_replace( id, <various>,'');id;

Without much luck. Can this even be done with regex, or should I just write a custom sql function?

kt

--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to