oracle数据库函数整理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle数据库函数整理相关的知识,希望对你有一定的参考价值。
1.字符类
lpad(str1,length,str2)
lpad函数从左边对字符串使用指定的字符进行填充。从其字面意思也可以理解,l是left的简写,pad是填充的意思,所以lpad就是从左边填充的意思。
举例:select lpad(1,5,‘x‘) from dual; 输出结果:xxxx1
rpad(str1,length,str2)
lpad函数从右边对字符串使用指定的字符进行填充。从其字面意思也可以理解,r是right的简写,pad是填充的意思,所以lpad就是从右边填充的意思。
举例:select rpad(1,5,‘x‘) from dual; 输出结果:1xxxx
upper(str)
将当前字符串全部转换为大写
lower(str)
将当前字符串全部转换为小写
initcap(str)
将第一个字符变成大写,其他字符变成小写
举例:select initcap(‘hEllo wOrld‘) from dual; 输出结果:Hello World
replace(字符串1,字符串2,字符串3)
将字符串1中所有的字符串2,替换成字符串3
举例:select replace(‘hEllo world‘,‘hE‘,‘He‘) from dual; 输出结果:Hello world
translate(char, from, to)
将from中的字符转换为to中与之位置对应的字符,若to中找不到与之对应的字符,返回值中的该字符将会被删除
举例:select translate(‘1ello 2orldc‘,‘12c‘,‘HW‘) from dual;输出结果:Hello World
bitand(ex1,ex2)
select to_char(sysdate, ‘yyyy‘) as nowYear from dual; --获取时间的年
select to_char(sysdate, ‘mm‘) as nowMonth from dual; --获取时间的月
select to_char(sysdate, ‘dd‘) as nowDay from dual; --获取时间的日
select to_char(sysdate, ‘hh24‘) as nowHour from dual; --获取时间的时
select to_char(sysdate, ‘mi‘) as nowMinute from dual; --获取时间的分
select to_char(sysdate, ‘ss‘) as nowSecond from dual; --获取时间的秒
select to_char(to_date(‘2017-07-31‘,‘yyyy-mm-dd‘),‘day‘) from dual; --获取某天是星期几
以上是关于oracle数据库函数整理的主要内容,如果未能解决你的问题,请参考以下文章