I have table article which contains columns like title, author, headline, body, subheading, abstract, and some more. I'm trying to replace all instances of particular symbol in all aforementioned columns at once (but not in the others) but I must say that working on SQL and databases isn't anything I know much about...
I've found this line here on stackoverflow, however after editing it into what I thought would work I see no effect. I hoped to start with just title column to see the results:
UPDATE article SET title = replace(title, '<U+2029>', ' ');
But it didn't change anything.
Can somebody explain to me what am I doing wrong and what to write in PostgreSQL to get what I need?