I was wondering how to go replacing a series of strings in batch. For example if I wanted to remove full stops from a field and also change double spaces between characters into single spaces. I know using Python one can simply use something like: .replace('.','').replace(' ', ' ').replace(etc.). Using postgresql it would look more like
UPDATE table
SET field = replace(field, 'replace text','replacement text')
I'm not sure how to get this to work for multiple replacement options. Thanks for any help you can provide.