http://hi.baidu.com/cuigq_hr/blog/item/ba2bc167ed79022eaa184c34.html
1.有sysdate转换后的日期的例子总结:
select to_char(sysdate, 'yyyy-mm-dd hh24:mi:ss') today_date, --今天带时分秒的
(sysdate - to_date('1970-01-01', 'yyyy-mm-dd')) * 86400 - 8*3600 todayToSecond,--今天带时分秒的日期转换成秒以后的
trunc(to_date(sysdate)) today_day,--今天之精确到天的
trunc(to_date(sysdate + 1)) tomorrow_day,--明天天之精确到天的
(trunc(to_date(sysdate)) - to_date('1970-01-01', 'yyyy-mm-dd')) *
86400 + 24 * 3600 - 8*3600 tomorrow_day --明天精确到秒的
from dual
2.秒转换成天的函数
select to_char(to_date('19700101', 'yyyymmdd') +
1253030400 / 86400 + 8 / 24,--(1253030400 此处为你的时间秒的转换成天)
'yyyy-mm-dd hh24:MI:ss') secondeToDay
from dual
3.select to_number(to_date('2009-02-04 23:24:30', 'yyyy-mm-dd hh24:MI:ss') -
to_date('2009-02-01 11:21:30', 'yyyy-mm-dd hh24:MI:ss'))
from dual;
4.某一天的日期型转换成秒
select (to_date('2009-02-04 23:24:30', 'yyyy-mm-dd hh24:MI:ss') - to_date('1970-01-01', 'yyyy-mm-dd')) * 86400 - 8*3600 moutianToSecond from dual;--某一天带时分秒的日期转换成秒以后的