how do we handle the camel case in json. Currently json is all lowercase?
So currently if we did:
select 'TodayIsMonday' from dual we get json output as : {"todayismonday": "TodayisMonday"}
But we would like the following: {"TodayIsMonday": "TodayisMonday"}
How can this be achieved?
Thank you.