我已经创建了一个视图,并且其列名是大写的,那么如何将列名从大写转换为驼峰式?
答案 0 :(得分:0)
您可以使用initcap函数。例如
select initcap('your text here') from dual;
谢谢。
答案 1 :(得分:0)
使用initcap
select initcap(columnname) from table_name
答案 2 :(得分:0)
SELECT INITCAP( string1 ) from dual;
INITCAP(string1)可能会给您想要的结果。