Answers for "postgresql remove special characters from string"

SQL
1

postgres regex remove special characters

UPDATE ex_cat_fda 
SET name = regexp_replace(name, '[^a-zA-Z0-9]+', '','g');
Posted by: Guest on March-12-2020

Code answers related to "postgresql remove special characters from string"

Code answers related to "SQL"

Browse Popular Code Answers by Language