postgres regex remove special characters code example
Example: postgres regex remove special characters
UPDATE ex_cat_fda
SET name = regexp_replace(name, '[^a-zA-Z0-9]+', '','g');
UPDATE ex_cat_fda
SET name = regexp_replace(name, '[^a-zA-Z0-9]+', '','g');