亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

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

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

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

小寫轉(zhuǎn)大寫UPPer

大寫轉(zhuǎn)小寫LOWER

例:

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

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

相關(guān)文章

最新評論