I have column with values that have wrong character ?
. Now I want to change it to character b
. For this I am using this statement:
SELECT REPLACE(name,'?','b') from contacts;
But when I do this nothing's happening, it return value with ?
.
What I am doing wrong? How I can replace this?