欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Oracle 大小寫(xiě)轉(zhuǎn)換函數(shù)實(shí)例詳解

 更新時(shí)間:2017年06月25日 15:36:52   投稿:lqh  
這篇文章主要介紹了Oracle 大小寫(xiě)轉(zhuǎn)換函數(shù)實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下

Oracle 大小寫(xiě)轉(zhuǎn)換函數(shù)

小寫(xiě)轉(zhuǎn)大寫(xiě)UPPer

大寫(xiě)轉(zhuǎn)小寫(xiě)LOWER

例:

select lower(ename) from emp;  
select upper(ename) from emp;  
 
--是否包含字母(大寫(xiě)和小寫(xiě)) 
select case when regexp_like('123','.([a-z]+|[A-Z])') then '包含字母' else '不包含字母' end from dual; 
 
--是否包含小寫(xiě)字母 
select case when regexp_like('S','[a-z]') then '包含小寫(xiě)字母' else '不包含小字母' end from dual; 
 
--是否包含大寫(xiě)寫(xiě)字母 
select case when regexp_like('行行s行','[A-Z]') then '包含大寫(xiě)字母' else '不包含大字母' end from dual; 
 
--是否包含小寫(xiě)字母 
select '包含小寫(xiě)' from dual where regexp_like('C','[a-z]'); 

 感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

相關(guān)文章

最新評(píng)論