orcl 中upper()和lower()和initcap()的用法

Posted su-root

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了orcl 中upper()和lower()和initcap()的用法相关的知识,希望对你有一定的参考价值。

upper(字符串 | 列):输入的字符串变为大写返回;

将 bqh4表里的zym字段信息中含有字母的全部转成大写的方法:

select * from bqh4 
select upper(zym) from bqh4

技术分享图片

技术分享图片

lower:(字符串 | 列):输入的字符串变为小写返回;

将 bqh4表里的zym字段信息中含有字母的全部转成小写的方法:

select lower(zym) from bqh4

技术分享图片

initcap:(字符串 | 列):开头首字母大写;

技术分享图片

以上是关于orcl 中upper()和lower()和initcap()的用法的主要内容,如果未能解决你的问题,请参考以下文章

Hibernate 函数 lower 和 upper 不适用于波兰语特殊字符

关于lower_bound( )和upper_bound( )的常见用法

徒手实现lower_bound和upper_bound

二分检索函数lower_bound()和upper_bound()

关于lower_bound()和upper_bound()

sql UPPER()和LOWER()