Hi,
My column values are stored in camel case and few are not in proper camel case.Is there any option to find camel case or not
with t as(
select 'country' camel_business_name from dual
union
select 'countryCode' from dual
union
select 'countryCurrencyValue' from dual
union
select 'CountryRegionalLanguage' from dual--not a camel case
union
select 'countryname' from dual --not a camel case
)
select * from t