oracle日期格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle日期格式相关的知识,希望对你有一定的参考价值。
1.转换函数
与date操作最大关系的就是2个转换函数:to_date() to_char()
to_date() 就是将字符类型安按照一定格式转换日期类型
比如:to_date(‘2016-04-15 00:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘) 前者为字符串,后者转换日期格式
2.to_char() :将日期转换一定格式转换字符类型
比如:to_char(sysdate,‘yyyy-mm-dd hh24:mi:ss‘) time from
select count(*)
from ( select rownum-1 rnum
from all_objects
where rownum <= to_date(‘‘2002-02-28‘‘,‘‘yyyy-mm-dd‘‘) - to_date(‘‘2002-
02-01‘‘,‘‘yyyy-mm-dd‘‘)+1
)
where to_char( to_date(‘‘2002-02-01‘‘,‘‘yyyy-mm-dd‘‘)+rnum-1, ‘‘D‘‘ )
not
in ( ‘‘1‘‘, ‘‘7‘‘ )
查找2002-02-28至2002-02-01间除星期一和七的天数
以上是关于oracle日期格式的主要内容,如果未能解决你的问题,请参考以下文章