Oracle 大小写转换函数实例详解
Oracle 大小写转换函数
小写转大写UPPer
大写转小写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]');
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关推荐
Omega 2020-08-16
娜娜 2020-07-28
Justdoit00 2020-07-04
goodriver 2020-06-17
sunboy 2020-06-14
LuoXinLoves 2020-06-10
Justdoit00 2020-06-08
Justdoit00 2020-06-08
娜娜 2020-06-08
Justdoit00 2020-06-01
oraclemch 2020-05-30
bianxq 2020-05-16
sunboy 2020-02-20
ktyl000 2020-02-20
一昕之代码 2020-02-20
LuoXinLoves 2020-05-04
点滴技术生活 2020-04-27
oraclemch 2020-04-22
Carlos 2020-04-18