oracle中查询首字母大写的语法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle中查询首字母大写的语法相关的知识,希望对你有一定的参考价值。
oracle中查询首字母大写的语法
星期、月份名称的第一个字母要大写,但季节第一个字母不大写.例如:sunday星期天,august八月,winter冬天,spring春天. 参考技术A oracle中查询表的字段中只有首字母大写的语法select name from emp where ename=initcap(name); 参考技术B 这是显示首字母大写
select INITCAP( SUBSTR(ename,1,1)) || LOWER(SUBSTR(ename,2,LENGTH(ename))) FROM EMP;
这是查询首字母大写
select * from t where name='A%'
union
select * from t where name='B%'
...
union
select * from t where name='Z%' 参考技术C where ascii(substr(col_name,1,1)) between 65 and 90 参考技术D where ascii(substr(col_name,1,1)) between 65 and 90
以上是关于oracle中查询首字母大写的语法的主要内容,如果未能解决你的问题,请参考以下文章