Answers for "remove special characters from in the being and end of a string value postgresql"

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 "remove special characters from in the being and end of a string value postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language