I have a varchar2 column named NAME_USER. for example the data is: JUAN ROMÄN but I try to show JUAN ROMAN, replace Á to A in my statement results. How Can I do that?. Thank
select replace('JUAN ROMÄN','Ä','A') from dual;
If you have more mappings to make, you could use TRANSLATE ...