欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ORACLE 毫秒与日期的相互转换示例

程序员文章站 2022-06-20 09:36:36
毫秒转换为日期 select to_char(1406538765000 / (1000 * 60 * 60 * 24) + to_date('1970-01...

毫秒转换为日期

select to_char(1406538765000 / (1000 * 60 * 60 * 24) + 
to_date('1970-01-01 08:00:00', 'yyyy-mm-dd hh:mi:ss'), 'yyyy-mm-dd hh24:mi:ss') as cdate 
from dual;

日期转换毫秒

select to_number(to_date('2014-07-28 17:12:45', 'yyyy-mm-dd hh24:mi:ss') - 
to_date('1970-01-01 8:0:0', 'yyyy-mm-dd hh24:mi:ss')) * 24 * 60 * 60 * 1000 
from dual;

获取系统当前时间

select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;

注意:毫秒转换为日期 格式化的时间可以是12小时制和24小时制。