Oracle基本函式 大小寫轉換函式

2021-08-20 04:02:41 字數 862 閱讀 3765

upper():所有字母轉換為大寫

lower():所有字母轉換為小寫

initcap():所有單詞首字母與轉換為大寫

declare

v_namelower varchar2(50)

:= 'kongfu panda like kongfu and panda';

v_nameupper varchar(50)

:= 'i think so definitely';

begin

dbms_output.put_line(upper(v_namelower));--所有字母轉換為大寫

dbms_output.put_line(lower(v_namelower));--所有字母轉換為小寫

dbms_output.put_line(initcap(v_namelower));--所有單詞首字母大寫

dbms_output.put_line(upper(v_nameupper));--大寫

dbms_output.put_line(lower(v_nameupper));--小寫

dbms_output.put_line(initcap(v_nameupper));--首字母大寫

end;

執行結果:

kongfu panda like kongfu and panda

kongfu panda like kongfu and panda

kongfu panda like kongfu and panda

i think so definitely

i think so definitely

i think so definitely

Oracle資料大小寫轉換

oracle 大小寫轉換函式 小寫轉大寫函式upper 大寫轉小寫函式lower 表 sys role 裡面有個角色編碼字段 rolecode 把查詢出來的資料 a.rolecode 轉換成大寫 select upper a.rolecode from sys role a where a.role...

Excel大小寫轉換函式

分享一下我老師大神的人工智慧教程。零基礎!通俗易懂!風趣幽默!還帶黃段子!希望你也加入到我們人工智慧的隊伍中來!excel中的大小寫轉換函式 1 轉換為全部小寫字母 lower函式 2 轉換為全部大寫字母 upper函式 3 轉換為首字母大寫,其餘小寫字母 proper函式 三種函式的使用方式,如下...

python大小寫轉換函式

1.全部轉換成大寫 upper 用法 str marsggbo print str.upper 結果 marsggbo 2.全部轉換成小寫 lower 用法 str marsggbo print str.lower 結果 marsggbo 3.首字母轉換成大寫 capitalize 其餘全部小寫 注...