Oracle10gで列の値をCamelCaseに変換する方法が必要です。 selectステートメントに沿って実行することを好みますが、関数を使用する必要がある場合は、それでも問題ありません。
アンダースコアをサポートする必要はなく、スペースだけをサポートします。
ありがとう
それはキャメルケースの私の理解ではありません
select substr(lower('Camel Case means the first char should be lower cased'),1,1)||substr(replace(initcap('Camel Case means the first char should be lower cased'),' '),2) from dual;
camelCaseMeansTheFirstCharShouldBeLowerCased
1 row selected.