ORACLE如何获得日期中的年份

Posted Cinderella_008

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ORACLE如何获得日期中的年份相关的知识,希望对你有一定的参考价值。

 

oracle中如何获得日期中的年份

Oracle中,要获得日期中的年份,例如把sysdate中的年份取出来,并不是一件难事。常用的方法

1、Select to_number(to_char(sysdate,'yyyy')) from dual

实例:

select

to_number(to_char(t.hiredate,'yyyy'))as 入职年,

to_number(to_char(t.hiredate,'MM'))as 入职月,

to_number(to_char(t.hiredate,'DD'))as 入职天

 from emp t;

2、使用Extract函数,Select Extract(year from sysdate) from dual,这种方法省掉了类型转换,看上去更加简洁。

相应的,要取得月份或日,可以用select extract(month from sysdate) from dual和select extract (day fromsysdate) from dual。
此方法获得的结果,是数值型

 

实例:

 

select

extract(year from t.hiredate) as入职年,

extract(month from t.hiredate) as入职月,

extract(day from t.hiredate) as入职天

 from emp t  ;



以上是关于ORACLE如何获得日期中的年份的主要内容,如果未能解决你的问题,请参考以下文章

oracle中如何获得日期中的年份?

oracle中如何获得日期中的年份?

ORACLE 中如何截取到时间的年月日中的年月日

ORACLE 中如何截取到时间的年月日中的年月日

从Oracle中的日期差异计算年份

Oracle 日期 - 如何将年份相加