Rabbit, i am trying to get my result like convert upper to lower and lower to upper in same string
example : select 'AbcDEfgH' from dual;
and i am expecting result as
output: aBCdeFGh
all lower convert to upper and upper convert to lower.
User Profile
Collapse
-
result coming twice , no conversion
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'
No activity results to display
Show More
Leave a comment: