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

oracle对日期的操作讲解

程序员文章站 2022-08-31 22:45:03
--日期转毫秒值 select to_number(sysdate-to_date('1970-01-01 00:00:00','yyyy-mm-dd hh24:mi:ss&...

--日期转毫秒值

select to_number(sysdate-to_date('1970-01-01 00:00:00','yyyy-mm-dd hh24:mi:ss'))*24*60*60*1000 from dual;

--毫秒值转日期

select to_char((1523476222000/1000/60/60/24+to_date('1970-01-01 00:00:00','yyyy-mm-dd hh24:mi:ss')),'yyyy-mm-dd hh24:mi:ss') from dual;

--获取当前日期

select sysdate from dual;