Remove special characters from a database field

update mytable
set FieldName = REPLACE(FieldName,"https://stackoverflow.com/",'')

That’s a good place to start.

Leave a Comment