0
Good morning !
I have a need to format the value with a space after the symbol of the coin in Oracle, I managed using the form below:
select to_char('0','L')||' '||ltrim(to_char('1235675430,12','999G999G999G999G999G990D99') ) from dual;
There’s a better way to do it, instead of doing it the way I did it ?