Hi,
I have tried to convert upper to lower and lower to upper in single string it's coming but not with same.
select upper(substr('m aN',0,3))||lowe r(substr('maN', 3)) from dual;
Result:
UPPER(
------
MANn
but it should come like 'MAn'
I have tried to convert upper to lower and lower to upper in single string it's coming but not with same.
select upper(substr('m aN',0,3))||lowe r(substr('maN', 3)) from dual;
Result:
UPPER(
------
MANn
but it should come like 'MAn'
Comment